My Project
Loading...
Searching...
No Matches
sha512.h
1
27WOLFSSL_API int wc_InitSha512(wc_Sha512*);
28
60WOLFSSL_API int wc_Sha512Update(wc_Sha512*, const byte*, word32);
61
91WOLFSSL_API int wc_Sha512Final(wc_Sha512*, byte*);
92
119WOLFSSL_API int wc_InitSha384(wc_Sha384*);
120
152WOLFSSL_API int wc_Sha384Update(wc_Sha384*, const byte*, word32);
153
183WOLFSSL_API int wc_Sha384Final(wc_Sha384*, byte*);
WOLFSSL_API int wc_InitSha384(wc_Sha384 *)
This function initializes SHA384. This is automatically called by wc_Sha384Hash.
Definition sha512.c:1045
WOLFSSL_API int wc_Sha512Final(wc_Sha512 *, byte *)
Finalizes hashing of data. Result is placed into hash.
Definition sha512.c:847
WOLFSSL_API int wc_Sha384Update(wc_Sha384 *, const byte *, word32)
Can be called to continually hash the provided byte array of length len.
Definition sha512.c:948
WOLFSSL_API int wc_InitSha512(wc_Sha512 *)
This function initializes SHA512. This is automatically called by wc_Sha512Hash.
Definition sha512.c:873
WOLFSSL_API int wc_Sha384Final(wc_Sha384 *, byte *)
Finalizes hashing of data. Result is placed into hash.
Definition sha512.c:987
WOLFSSL_API int wc_Sha512Update(wc_Sha512 *, const byte *, word32)
Can be called to continually hash the provided byte array of length len.
Definition sha512.c:705
Definition sha512.h:116