blake2.h
1 
22 WOLFSSL_API int wc_InitBlake2b(Blake2b*, word32);
23 
57 WOLFSSL_API int wc_Blake2bUpdate(Blake2b*, const byte*, word32);
58 
95 WOLFSSL_API int wc_Blake2bFinal(Blake2b*, byte*, word32);
Definition: blake2.h:62
WOLFSSL_API int wc_Blake2bUpdate(Blake2b *, const byte *, word32)
This function updates the Blake2b hash with the given input data. This function should be called afte...
Definition: blake2b.c:434
WOLFSSL_API int wc_Blake2bFinal(Blake2b *, byte *, word32)
This function computes the Blake2b hash of the previously supplied input data. The output hash will b...
Definition: blake2b.c:441
WOLFSSL_API int wc_InitBlake2b(Blake2b *, word32)
This function initializes a Blake2b structure for use with the Blake2 hash function.
Definition: blake2b.c:422