same51_crypto_hash.c
void sha1Init(Sha1Context *context)
Initialize SHA-1 message digest context.
Definition: same51_crypto_hash.c:166
void sha256Init(Sha256Context *context)
Initialize SHA-256 message digest context.
Definition: same51_crypto_hash.c:331
void sha1Update(Sha1Context *context, const void *data, size_t length)
Update the SHA-1 context with a portion of the message being hashed.
Definition: same51_crypto_hash.c:189
void sha1FinalRaw(Sha1Context *context, uint8_t *digest)
Finish the SHA-1 message digest (no padding added)
Definition: same51_crypto_hash.c:291
void sha256Final(Sha256Context *context, uint8_t *digest)
Finish the SHA-256 message digest.
Definition: same51_crypto_hash.c:417
void sha224Init(Sha224Context *context)
Initialize SHA-224 message digest context.
Definition: same51_crypto_hash.c:305
void sha256Update(Sha256Context *context, const void *data, size_t length)
Update the SHA-256 context with a portion of the message being hashed.
Definition: same51_crypto_hash.c:357
General definitions for cryptographic algorithms.
Collection of hash algorithms.
void osAcquireMutex(OsMutex *mutex)
Acquire ownership of the specified mutex object.
Definition: os_port_chibios.c:396
void osReleaseMutex(OsMutex *mutex)
Release ownership of the specified mutex object.
Definition: os_port_chibios.c:408
void sha1Final(Sha1Context *context, uint8_t *digest)
Finish the SHA-1 message digest.
Definition: same51_crypto_hash.c:249
void hashProcessData(uint32_t algo, const uint8_t *data, size_t length, uint32_t *h)
Update hash value.
Definition: same51_crypto_hash.c:83
void sha256FinalRaw(Sha256Context *context, uint8_t *digest)
Finish the SHA-256 message digest (no padding added)
Definition: same51_crypto_hash.c:459
Debugging facilities.
SAME51 hardware cryptographic accelerator.
SAME51 hash hardware accelerator.