| Home | Trees | Indices | Help |
|
|---|
|
|
MD5 cryptographic hash algorithm.
MD5 is specified in RFC1321 and produces the 128 bit digest of a message.
>>> from Crypto.Hash import MD5 >>> >>> h = MD5.new() >>> h.update(b'Hello') >>> print h.hexdigest()
MD5 stand for Message Digest version 5, and it was invented by Rivest in 1991.
This algorithm is insecure. Do not use it for new designs.
| Classes | |
| new | |
| Variables | |
digest_size = 16The size of the resulting hash in bytes. |
|
block_size = 64The internal block size of the hash algorithm in bytes. |
|
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Mon Sep 7 14:45:24 2020 | http://epydoc.sourceforge.net |