|
Server : Apache System : Linux cvar2.toservers.com 3.10.0-962.3.2.lve1.5.73.el7.x86_64 #1 SMP Wed Aug 24 21:31:23 UTC 2022 x86_64 User : njnconst ( 1116) PHP Version : 8.4.18 Disable Function : NONE Directory : /opt/alt/python27/lib64/python2.7/site-packages/Crypto/Hash/ |
Upload File : |
�
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>