ripemd.h
1 
26 WOLFSSL_API int wc_InitRipeMd(RipeMd*);
27 
62 WOLFSSL_API int wc_RipeMdUpdate(RipeMd*, const byte*, word32);
63 
103 WOLFSSL_API int wc_RipeMdFinal(RipeMd*, byte*);
WOLFSSL_API int wc_RipeMdFinal(RipeMd *, byte *)
This function copies the computed digest into hash. If there is a partial unhashed block...
Definition: ripemd.c:315
Definition: ripemd.h:48
WOLFSSL_API int wc_RipeMdUpdate(RipeMd *, const byte *, word32)
This function generates the RipeMd digest of the data input and stores the result in the ripemd->dige...
Definition: ripemd.c:282
WOLFSSL_API int wc_InitRipeMd(RipeMd *)
This function initializes a ripemd structure by initializing ripemd’s digest, buffer, loLen and hiLen.
Definition: ripemd.c:42