My Project
Loading...
Searching...
No Matches
md2.h
Go to the documentation of this file.
1
27void wc_InitMd2(Md2*);
28
60void wc_Md2Update(Md2* md2, const byte* data, word32 len);
61
91void wc_Md2Final(Md2* md2, byte* hash);
92
116int wc_Md2Hash(const byte* data, word32 len, byte* hash);
void wc_Md2Final(Md2 *md2, byte *hash)
Finalizes hashing of data. Result is placed into hash.
void wc_Md2Update(Md2 *md2, const byte *data, word32 len)
Can be called to continually hash the provided byte array of length len.
int wc_Md2Hash(const byte *data, word32 len, byte *hash)
Convenience function, handles all the hashing and places the result into hash.
void wc_InitMd2(Md2 *)
This function initializes md2. This is automatically called by wc_Md2Hash.