RE: [PHP-DB] Encrypting DB content

2006-01-02 Thread Bastien Koert
yes, have a look at mcrypt(www.php.net/mcrypt) and decrypt(www.php.net/decrypt) Bastien From: "Kosala Atapattu" <[EMAIL PROTECTED]> To: "Micah Stevens" <[EMAIL PROTECTED]>, Subject: RE: [PHP-DB] Encrypting DB content Date: Mon, 2 Jan 2006 13:20:47 +0600 Th

Re: [PHP-DB] Encrypting DB content

2006-01-02 Thread Julien Bonastre
IL PROTECTED] www.the-spectrum.org --oOo---oOo-- - Original Message - From: "Kosala Atapattu" <[EMAIL PROTECTED]> To: "Micah Stevens" <[EMAIL PROTECTED]>; Sent: Monday, January 02, 2006 5:20 PM Subject: RE: [PHP-DB] Encrypting DB content

RE: [PHP-DB] Encrypting DB content

2006-01-02 Thread Kosala Atapattu
who saved it. Is this possible, through a DB level or using application level components. Kosala > -Original Message- > From: Micah Stevens [mailto:[EMAIL PROTECTED] > Sent: Saturday, December 31, 2005 12:13 > To: php-db@lists.php.net > Subject: Re: [PHP-DB] Encryp

Re: [PHP-DB] Encrypting DB content

2005-12-31 Thread Micah Stevens
u'll never be able to match it back) that alters the hash value > of the base password the users provide. You can prepend and append the hash > values to the value to be MD5'd to make it more secure. > > Bastien > > >From: Micah Stevens <[EMAIL PROTECTED]> > >T

Re: [PHP-DB] Encrypting DB content

2005-12-31 Thread Bastien Koert
hp-db@lists.php.net Subject: Re: [PHP-DB] Encrypting DB content Date: Fri, 30 Dec 2005 22:12:38 -0800 You can store an MD5, or SHA hash of the password, and then compare.. This is not an encrypted version of the password, rather a calculated hash of it. You can't (well, not without a bit o

Re: [PHP-DB] Encrypting DB content THANK YOU and nlist help

2005-12-30 Thread Micah Stevens
No problem. Try adding the -t switch to nlist to sort by file time. If you require the opposite order, add -r (for reverse).. nlist -t (order newest first) nlist -tr (order oldest first) HTH, -Micah On Friday 30 December 2005 10:32 pm, Chris Payne wrote: > Hi there, > > Thank you for your

Re: [PHP-DB] Encrypting DB content

2005-12-30 Thread Micah Stevens
You can store an MD5, or SHA hash of the password, and then compare.. This is not an encrypted version of the password, rather a calculated hash of it. You can't (well, not without a bit of effort) decrypt this back into the password. The idea is when you store the password, you create the has