#include <nitro/math/dgt.h>
static inline void MATH_MD5Update( MATHMD5Context *context, const void* input, u32 length );
context |
Pointer to the context structure used for MD5 generation. |
input | Pointer to the input data |
length | Size of the input data |
None.
This function updates the MD5 digest value based on the input data. You must first call MATH_MD5Init
to initialize the "context" argument. Call this function as many times as needed, and then use MATH_MD5GetHash
to obtain the hash value. Any size and alignment position can be used for the input data. 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).
04/01/2005 Initial version.