md5.py

Go to the documentation of this file.
00001 def md5(plain):
00002     import hashlib
00003     m = hashlib.md5()
00004     m.update(plain)
00005     return m.hexdigest()
00006 
00007 

© Copyright 2008-2009 Vyper Logix Corp., All Right Reserved; If you reference this document or any part of this document you must use the citation verbatim (including the link) "© Copyright 2008-2009 Vyper Logix Corp., All Right Reserved."

Notice: This source code contained in this document is NOT open source and is NOT being distributed as open source.

122,241 lines of code and growing...