NETMD5Update

C Specification

#include <revolution/net.h>

void NETMD5Update( NETMD5Context *context, const void* input, u32 length );

Arguments

context Pointer to the context structure used for MD5 generation.
input Pointer to the input data.
length Size of the input data.

Return Values

None.

Description

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.

See Also

NETMD5Init, NETMD5GetDigest

Revision History

2007/02/15 Corrected incorrect links.
2006/09/01 Initial version.


CONFIDENTIAL