The
MD5
module implements the RSA Data Security, Inc.amp; MD5 Message-Digest Algorithm
(MD5).
It produces 128-bit MD5 Digest of data.
MD5Init
|
must be called just before
MD5Transform()
will be used to produce a digest.
The
buf
argument is the storage for the digest being produced on subsequent
calls to the
MD5Transform()
routine.
|
MD5Transform
|
is the core of the MD5 algorithm, this alters an existing MD5 hash
kept in
buf
to reflect the addition of 64 characters
of new data passed in
block
argument.
|