For Gauche 0.9.11Search (procedure/syntax/module):

Next: , Previous: , Up: Library modules - Utilities   [Contents][Index]

12.46 rfc.md5 - MD5 message digest

Module: rfc.md5

This module implements MD5 message digest algorithm, defined in RFC 1321 (https://www.ietf.org/rfc/rfc1321.txt). The module extends util.digest (see Message digester framework).

Class: <md5>

{rfc.md5} The instance of this class keeps internal state of MD5 digest algorithm.

This class implements util.digest framework interface, digest-update!, digest-final!, digest, and digest-string. See Message digester framework, for detailed explanation of these methods.

Besides the digester framework, this module provides to short-cut procedures.

Function: md5-digest

{rfc.md5} Reads data from the current input port until EOF, and returns its digest in an incomplete string.

Function: md5-digest-string string

{rfc.md5} Digest the data in string, and returns the result in an incomplete string.


Next: , Previous: , Up: Library modules - Utilities   [Contents][Index]


For Gauche 0.9.11Search (procedure/syntax/module):