Submit
Path:
~
/
/
proc
/
thread-self
/
root
/
opt
/
alt
/
python27
/
lib64
/
python2.7
/
site-packages
/
Crypto
/
Hash
/
File Content:
MD4.pyc
� 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>