#include <revolution/net.h>
void NETMD5Update( NETMD5Context *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 the NETMD5Init function to initialize the "context" argument. Call this function as many times as needed, and then use NETMD5GetDigest to obtain the hash value.
Any size and alignment position can be used for the input data.
For details, see the MD5 section of the hash algorithm.
2007/02/15 Corrected incorrect links.
2006/09/01 Initial version.
CONFIDENTIAL