Re: [PHP] Data Encryption

2005-03-04 Thread trlists
On 2 Mar 2005 Erbacher Karl wrote: > I'm not sure if this is even a PHP question, but I'm hoping someone can help > me. I need to encipher data to be stored in a database and then I need to be > able to decipher it to use it. I was thinking of using DES and I obtained a > pair of keys, but I'm

Re: [PHP] Data Encryption

2005-03-03 Thread Richard Lynch
Erbacher Karl wrote: > I'm not sure if this is even a PHP question, but I'm hoping someone can > help > me. I need to encipher data to be stored in a database and then I need to > be > able to decipher it to use it. I was thinking of using DES and I obtained > a > pair of keys, but I'm not sure wh

Re: [PHP] Data Encryption

2005-03-02 Thread Matthew Fonda
I would recommend using PEAR::Crypt_Blowfish http://pear.php.net/package/Crypt_Blowfish It should work pretty good and get exactly what you need to do done. You can provide a key, and it has a method to encrypt and decrypt text using the key, so should be pretty easy > Hi, > I'm not sure if th

[PHP] Data Encryption

2005-03-02 Thread Erbacher Karl
Hi, I'm not sure if this is even a PHP question, but I'm hoping someone can help me. I need to encipher data to be stored in a database and then I need to be able to decipher it to use it. I was thinking of using DES and I obtained a pair of keys, but I'm not sure where to go from there. I've s