26 #ifndef WOLF_CRYPT_RIPEMD_H 27 #define WOLF_CRYPT_RIPEMD_H 41 RIPEMD_BLOCK_SIZE = 64,
42 RIPEMD_DIGEST_SIZE = 20,
52 word32 digest[RIPEMD_DIGEST_SIZE /
sizeof(word32)];
53 word32 buffer[RIPEMD_BLOCK_SIZE /
sizeof(word32)];
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
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