Current File : //proc/self/root/proc/self/root/lib64/python2.7/site-packages/Crypto/Hash/MD5.pyc |
�
Bd\Rc @ s� d Z d Z d d d g Z d d l Td d l m Z y d d l Z e j Z Wn# e k
rs d d l Z e Z n Xd e f d � � YZ
d d
� Z e
j
Z
e
j Z d S( s� 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.
.. _RFC1321: http://tools.ietf.org/html/rfc1321
s $Id$t newt digest_sizet MD5Hashi����( t *( t HashAlgoNc B s>