[PHP] Re: Converting a large number of passwords to MD5 at once.

2003-02-17 Thread Nenad Djordjevic
Hello Vernon,

If database is MySQL you can use MySQL function MD5:

UPDATE TableName SET password = MD5(password)


If database is not MySQL: write PHP script and use PHP function md5;




Best regards,
 Nenad Djordjevic   mailto:[EMAIL PROTECTED]
   
   Diyomi Soft
   http://www.diyomisoft.com/


Monday, February 17, 2003, 2:17:09 AM, you wrote:

V> I made the mistake of opening a web site with encrypting the passwords
V> stored in the database and want to encrypt them all in one fell swoop. Any
V> ideas on how to do that?

V> Thanks


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Re: Converting a large number of passwords to MD5 at once.

2003-02-16 Thread Lord Loh.
Simple!
Write a script to automate the process!

Lord Loh



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php