Version 3 of MD4

Updated 2004-02-16 16:21:26

The MD4 message-digest algorithm is specified by RFC 1320 [L1 ] This algorithm takes an arbitrary quantity of data and generates a 128-bit message digest from the input. The MD4 algorithm is faster but potentially weaker than the related MD5 algorithm [L2 ].

A tcl-only implementation of MD4 is now part of tcllib. Documentation can be found at http://tcllib.sourceforge.net/doc/md4.html

Examples

 % package require md4
 1.0.0
 % md4::md4 {}
 1ÖÏàÑjé1·<Y×àÀ&#137;À
 % md4::md4 -hex {}
 31D6CFE0D16AE931B73C59D7E0C089C0
 % md4::md4 a
 ½å,³�ã>F$^�ûÛÖû$
 % md4::md4 -hex a
 BDE52CB31DE33E46245E05FBDBD6FB24

See also md5, sha1, RIPEMD, ntlm

[ Category Cryptography | Category Package, subset tcllib ]