Revision 2 as of 2004-06-25 05:04:15

Clear message

MD5 Passwords

It's very easy to create MD5 passwords with Python-

You just:

   1 import md5
   2 
   3 key_string = raw_input( "Key to turn into an MD5 password? " )
   4 
   5 print md5.new( key_string ).hexdigest()

ex: "robots" turns into "27f5e15b6af3223f1176293cd015771d"

The "hexdigest" form is the form you frequently find used in databases and in online forums.

See Also

Discussion

Unable to edit the page? See the FrontPage for instructions.