#include <nitro/math/dgt.h>
typedef struct MATHMD5Context MATHMD5Context;
Do not access the elements of this structure directly.
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).
MATH_MD5Init
, MATH_MD5Update
, MATH_MD5GetHash
04/12/2005 Added description of size.
04/01/2005 Initial version.