Current File : //proc/self/root/proc/self/root/lib64/python2.7/site-packages/Crypto/Hash/MD4.pyo |
�
Bd\Rc @ s� d Z d Z d d d g Z d d l Td d l m Z d d l j j Z e Z d e f d � � YZ
d d
� Z e
j
Z
e
j Z d S( s� MD4 cryptographic hash algorithm.
MD4 is specified in RFC1320_ and produces the 128 bit digest of a message.
>>> from Crypto.Hash import MD4
>>>
>>> h = MD4.new()
>>> h.update(b'Hello')
>>> print h.hexdigest()
MD4 stand for Message Digest version 4, and it was invented by Rivest in 1990.
This algorithm is insecure. Do not use it for new designs.
.. _RFC1320: http://tools.ietf.org/html/rfc1320
s $Id$t newt digest_sizet MD4Hashi����( t *( t HashAlgoNc B s>