Hi,
I want to encrypt user submitted data(email for example), and decrypt it later when required.
How to?
Thanks
This is an archived forum and the content is probably no longer relevant, but is provided here for posterity.
The active forums are here.
July 18, 2009 4:38pm
Subscribe [3]#1 / Jul 18, 2009 4:38pm
Hi,
I want to encrypt user submitted data(email for example), and decrypt it later when required.
How to?
Thanks
#2 / Jul 18, 2009 5:03pm
For the love of god, read the userguide : http://ellislab.com/codeigniter/user-guide/libraries/encryption.html
#3 / Jul 18, 2009 5:32pm
For the love of god, read the userguide : http://ellislab.com/codeigniter/user-guide/libraries/encryption.html
Hehe! Getting tired of people not reading, even though their topic is in the userguide headlines? I do too…
#4 / Jul 18, 2009 6:26pm
Thanks.
#5 / Nov 24, 2009 10:06pm
For the love of god, read the userguide : http://ellislab.com/codeigniter/user-guide/libraries/encryption.html
I read this page in the manual, but have a question. If I encrypt the contents of an email, are there email clients that can use the encryption key to decrypt the email? I’ve never seen a feature like this in my email client, but I’m certainly no expert on email clients.
The reason I ask is, I need to be able to do this, and haven’t worked out how it will be done.
#6 / Nov 25, 2009 12:05pm
@skunkbad
You’ll want to look into PGP, Pretty Good Privacy. The public key / private key system is the one used in most email clients, which is not directly supported by the Encryption library in CI.
#7 / Nov 25, 2009 12:16pm
@skunkbad
You’ll want to look into PGP, Pretty Good Privacy. The public key / private key system is the one used in most email clients, which is not directly supported by the Encryption library in CI.
I was checking out PGP last night. From what I could gather, it looks like I would have to have root access to the server to install PGP, and I do not.