My Project
md4.h
Go to the documentation of this file.
1 
27 void wc_InitMd4(Md4*);
28 
60 void wc_Md4Update(Md4* md4, const byte* data, word32 len);
61 
88 void wc_Md4Final(Md4* md4, byte* hash);
void wc_InitMd4(Md4 *)
This function initializes md4. This is automatically called by wc_Md4Hash.
void wc_Md4Update(Md4 *md4, const byte *data, word32 len)
Can be called to continually hash the provided byte array of length len.
void wc_Md4Final(Md4 *md4, byte *hash)
Finalizes hashing of data. Result is placed into hash.