Your IP : 216.73.216.213
Bd\R�
� @ 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 Gd d � d e � Z
d d
d � Z e
j Z e
j
Z
d S)a� 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
z$Id$�new�digest_size�MD4Hash� )�*)�HashAlgoNc @ sL e Z d Z d Z e d � Z d Z d Z d d d � Z d d d � Z d S)
r zIClass that implements an MD4 hash
:undocumented: block_size
u
*H÷
� �@ Nc C s t j | t | � d S)N)r �__init__�hashFactory)�self�data� r
�B/opt/alt/python35/lib64/python3.5/site-packages/Crypto/Hash/MD4.pyr C s zMD4Hash.__init__c C s
t | � S)N)r )r r r
r
r r F s zMD4Hash.new)
�__name__�
__module__�__qualname__�__doc__�bZoidr �
block_sizer r r
r
r
r r 0 s
c C s t � j | � S)a Return a fresh instance of the hash object.
:Parameters:
data : byte string
The very first chunk of the message to hash.
It is equivalent to an early call to `MD4Hash.update()`.
Optional.
:Return: A `MD4Hash` object
)r r )r r
r
r r I s )r Z_revision__�__all__ZCrypto.Util.py3compatZCrypto.Hash.hashalgor ZCrypto.Hash._MD4ZHashZ_MD4r
r r r r r
r
r
r �<module>$ s