BSD style: see doc/license.txt for details
Initial release: Feb 2006
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 : Md4 [final] ¶
-
- this() ¶
-
- void transform(const(ubyte[]) input) [protected, override] ¶
-
Performs the cipher on a block of data
data | the block of data to cipher |
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().