License:
BSD style: see doc/license.txt for details
Version:
Initial release: Feb 2006
author:
Regan Heath, Oskar Linde
This module implements the MD5 Message Digest Algorithm as described
by RFC 1321 The MD5 Message-Digest Algorithm. R. Rivest. April 1992.
class Md5: tango.util.digest.Md4.Md4;
this();
Construct an Md5
protected void transform(const(ubyte[]) input);
Performs the cipher on a block of data
Params:
data
the block of data to cipher
Remarks:
The actual cipher algorithm is carried out by this method on
the passed block of data. This method is called for every
blockSize() bytes of input data and once more with the remaining
data padded to blockSize().
Page generated by Ddoc. Copyright (c) 2006 Tango. All rights reserved