MATHMD5Context

C Specification

#include <nitro/math/dgt.h>
typedef struct MATHMD5Context MATHMD5Context;

Elements

Do not access the elements of this structure directly.

Description

This is the context structure used in calculating MD5. It has a size of 88 bytes. Initialize the structure with MATH_MD5Init, use MATH_MD5Update to assign input data, and MATH_MD5GetHash to get the message digest value. MD5 is an algorithm to find the message digest value. For details, see RFC (Request For Comments) 1321, which is published by IETF (The Internet Engineering Task Force).

See Also

MATH_MD5Init, MATH_MD5Update, MATH_MD5GetHash

Revision History

04/12/2005 Added description of size.
04/01/2005 Initial version.