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