Re: security paranoia

2002-06-11 Thread Tonu Samuel
On Tue, 11 Jun 2002, MikeParton wrote: > Where in the MySQL docs does it discuss DES_ENCRYPT/DES_DECRYPT support? > > Alternatively (and I am posting this to the php lists), anyone know where, > or if, I can get pre-compiled libmcrypt library for php 4.2.1? http://www.mysql.com/doc/M/i/Misce

Re: security paranoia

2002-06-11 Thread MikeParton
ROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 11, 2002 4:16 PM Subject: Re: security paranoia > > > On Tue, 11 Jun 2002, Ray wrote: > > > looking for something like > > encrypt(str, protected_str) > > and > > decrypt (crypt_str, private_str) > >

Re: security paranoia

2002-06-11 Thread Tonu Samuel
On Tue, 11 Jun 2002, Ray wrote: > looking for something like > encrypt(str, protected_str) > and > decrypt (crypt_str, private_str) > and probably a make_key_pair() > > its not a vital part of my current project, but i'm sure someone will get > cracked into (again) and then there will be anothe

security paranoia

2002-06-11 Thread Ray
i'd like to setup a system that would allow for sensitive information to be encoded (like cc numbers), however having different keys for encoding & decoding the data. found these in the manual, but they use the same pass_str. ENCODE(str,pass_str) Encrypt str using pass_str as the password. To