My Project
Loading...
Searching...
No Matches
blake2.h
1
22WOLFSSL_API int wc_InitBlake2b(Blake2b*, word32);
23
57WOLFSSL_API int wc_Blake2bUpdate(Blake2b*, const byte*, word32);
58
95WOLFSSL_API int wc_Blake2bFinal(Blake2b*, byte*, word32);
WOLFSSL_API int wc_InitBlake2b(Blake2b *, word32)
This function initializes a Blake2b structure for use with the Blake2 hash function.
Definition blake2b.c:422
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
Definition blake2.h:62