sha512_224.c
void(* HashAlgoUpdate)(void *context, const void *data, size_t length)
Definition: crypto.h:993
__weak_func void sha512_224Update(Sha512_224Context *context, const void *data, size_t length)
Update the SHA-512/224 context with a portion of the message being hashed.
Definition: sha512_224.c:147
__weak_func void sha512_224Final(Sha512_224Context *context, uint8_t *digest)
Finish the SHA-512/224 message digest.
Definition: sha512_224.c:160
General definitions for cryptographic algorithms.
__weak_func error_t sha512_224Compute(const void *data, size_t length, uint8_t *digest)
Digest a message using SHA-512/224.
Definition: sha512_224.c:76
SHA-512/224 (Secure Hash Algorithm)
void sha512Final(Sha512Context *context, uint8_t *digest)
Finish the SHA-512 message digest.
Definition: esp32_s2_crypto_hash.c:685
__weak_func void sha512_224Init(Sha512_224Context *context)
Initialize SHA-512/224 message digest context.
Definition: sha512_224.c:121
error_t(* HashAlgoCompute)(const void *data, size_t length, uint8_t *digest)
Definition: crypto.h:988
void sha512Update(Sha512Context *context, const void *data, size_t length)
Update the SHA-512 context with a portion of the message being hashed.
Definition: esp32_s2_crypto_hash.c:625