My Project
|
Functions | |
void | wc_InitMd4 (Md4 *) |
This function initializes md4. This is automatically called by wc_Md4Hash. More... | |
void | wc_Md4Update (Md4 *md4, const byte *data, word32 len) |
Can be called to continually hash the provided byte array of length len. More... | |
void | wc_Md4Final (Md4 *md4, byte *hash) |
Finalizes hashing of data. Result is placed into hash. More... | |
void wc_InitMd4 | ( | Md4 * | ) |
This function initializes md4. This is automatically called by wc_Md4Hash.
md4 | pointer to the md4 structure to use for encryption |
Example
void wc_Md4Final | ( | Md4 * | md4, |
byte * | hash | ||
) |
Finalizes hashing of data. Result is placed into hash.
md4 | pointer to the md4 structure to use for encryption |
hash | Byte array to hold hash value. |
Example
void wc_Md4Update | ( | Md4 * | md4, |
const byte * | data, | ||
word32 | len | ||
) |
Can be called to continually hash the provided byte array of length len.
md4 | pointer to the md4 structure to use for encryption |
data | the data to be hashed |
len | length of data to be hashed |
Example