My Project
Loading...
Searching...
No Matches
ripemd.h
1
26WOLFSSL_API int wc_InitRipeMd(RipeMd*);
27
62WOLFSSL_API int wc_RipeMdUpdate(RipeMd*, const byte*, word32);
63
103WOLFSSL_API int wc_RipeMdFinal(RipeMd*, byte*);
WOLFSSL_API int wc_InitRipeMd(RipeMd *)
This function initializes a ripemd structure by initializing ripemd’s digest, buffer,...
Definition ripemd.c:42
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
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
Definition ripemd.h:48