Next: rfc.mime
- MIME message handling, Previous: rfc.json
- JSON parsing and construction, Up: Library modules - Utilities [Contents][Index]
rfc.md5
- MD5 message digestThis module implements MD5 message digest algorithm, defined in
RFC 1321 (https://www.ietf.org/rfc/rfc1321.txt).
The module extends util.digest
(see util.digest
- Message digester framework).
Typically, all you need to do is to pass the class object <md5>
to the message
digester; see util.digest
- Message digester framework, and also
see rfc.hmac
- HMAC keyed-hashing.
{rfc.md5}
The instance of this class keeps internal state of MD5 digest algorithm.
This class implements util.digest
framework interface,
so you can pass this class to message digest procedures such as
digest-message-to
(see util.digest
- Message digester framework).
The following procedures are deprecated. Use generic
message digester (see util.digest
- Message digester framework) or
HMAC keyed digester (see rfc.hmac
- HMAC keyed-hashing).
{rfc.md5} Deprecated. Reads data from the current input port until EOF, and returns its digest in an incomplete string.
{rfc.md5} Deprecated. Digest the data in string, and returns the result in an incomplete string.
Next: rfc.mime
- MIME message handling, Previous: rfc.json
- JSON parsing and construction, Up: Library modules - Utilities [Contents][Index]