md5 - MD5 Message-Digest Algorithm
TABLE OF CONTENTS
SYNOPSIS
DESCRIPTION
COMMANDS
PROGRAMMING INTERFACE
EXAMPLES
REFERENCES
SEE ALSO
KEYWORDS
COPYRIGHT
package require Tcl 8.2
package require md5 2.0
This package is an implementation in Tcl of the MD5 message-digest algorithm as described in RFC 1321 (1). This algorithm takes an arbitrary quantity of data and generates a 128-bit message digest from the input. The MD5 algorithm is related to the MD4 algorithm (2) but has been strengthened against certain types of potential attack. MD5 should be used in preference to MD4 for new applications.
Note the previous version of this package always returned a hex encoded string. This has been changed to simplify the programming interface and to make this version more compatible with other implementations. To obtain the previous usage, either explicitly specify package version 1 or use the -hex option to the md5 command.
For the programmer, the MD5 hash can be viewed as a bucket into which one pours data. When you have finished, you extract a value that is derived from the data that was poured into the bucket. The programming interface to the MD5 hash operates on a token (equivalent to the bucket). You call MD5Init to obtain a token and then call MD5Update as many times as required to add data to the hash. To release any resources and obtain the hash value, you then call MD5Final. An equivalent set of functions gives you a keyed digest (HMAC).
If you have critcl and have built the tcllibc package then the implementation of the hashing function will be performed by compiled code - otherwise there is a pure-tcl equivalent. The programming interface remains the same, however.
% md5::md5 -hex "Tcl does MD5" 8AAC1EE01E20BB347104FABB90310433 |
% md5::hmac -hex -key Sekret "Tcl does MD5" 35BBA244FD56D3EDF5F3C47474DACB5D |
% set tok [md5::MD5Init] ::md4::1 % md4::MD5Update $tok "Tcl " % md4::MD5Update $tok "does " % md4::MD5Update $tok "MD5" % md4::Hex [md5::MD5Final $tok] 8AAC1EE01E20BB347104FABB90310433 |
md4, sha1
hashing, md5, message-digest, rfc 1320, rfc 1321, rfc 2104, security
Copyright © 2003, Pat Thoyts <patthoyts@users.sourceforge.net>