stm32f4xx_crypto_hash.c
void md5Update(Md5Context *context, const void *data, size_t length)
Update the MD5 context with a portion of the message being hashed.
Definition: stm32f4xx_crypto_hash.c:153
void md5ProcessBlock(Md5Context *context)
Process message in 16-word blocks.
Definition: stm32f4xx_crypto_hash.c:213
STM32F4 hash hardware accelerator.
STM32F4 hardware cryptographic accelerator.
void sha1Update(Sha1Context *context, const void *data, size_t length)
Update the SHA-1 context with a portion of the message being hashed.
Definition: stm32f4xx_crypto_hash.c:230
General definitions for cryptographic algorithms.
Collection of hash algorithms.
void hashProcessData(uint32_t algo, const uint8_t *data, size_t length, uint32_t *h, size_t hLen)
Update hash value.
Definition: stm32f4xx_crypto_hash.c:71
void sha1ProcessBlock(Sha1Context *context)
Process message in 16-word blocks.
Definition: stm32f4xx_crypto_hash.c:290
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 sha256Update(Sha256Context *context, const void *data, size_t length)
Update the SHA-256 context with a portion of the message being hashed.
Definition: stm32f4xx_crypto_hash.c:307
void sha256ProcessBlock(Sha256Context *context)
Process message in 16-word blocks.
Definition: stm32f4xx_crypto_hash.c:367
Debugging facilities.