tm4c129_crypto_hash.c
void hashProcessData(const uint8_t *data, size_t length, uint32_t *h, size_t hLen)
Update hash value.
Definition: tm4c129_crypto_hash.c:80
Tiva TM4C129 hardware cryptographic accelerator.
void md5Final(Md5Context *context, uint8_t *digest)
Finish the MD5 message digest.
Definition: tm4c129_crypto_hash.c:300
void sha224Init(Sha224Context *context)
Initialize SHA-224 message digest context.
Definition: tm4c129_crypto_hash.c:610
void md5Update(Md5Context *context, const void *data, size_t length)
Update the MD5 context with a portion of the message being hashed.
Definition: tm4c129_crypto_hash.c:219
void sha1FinalRaw(Sha1Context *context, uint8_t *digest)
Finish the SHA-1 message digest (no padding added)
Definition: tm4c129_crypto_hash.c:551
void sha256Final(Sha256Context *context, uint8_t *digest)
Finish the SHA-256 message digest.
Definition: tm4c129_crypto_hash.c:834
error_t sha224Compute(const void *data, size_t length, uint8_t *digest)
Digest a message using SHA-224.
Definition: tm4c129_crypto_hash.c:573
void md5FinalRaw(Md5Context *context, uint8_t *digest)
Finish the MD5 message digest (no padding added)
Definition: tm4c129_crypto_hash.c:343
void md5Init(Md5Context *context)
Initialize MD5 message digest context.
Definition: tm4c129_crypto_hash.c:197
void sha1Final(Sha1Context *context, uint8_t *digest)
Finish the SHA-1 message digest.
Definition: tm4c129_crypto_hash.c:507
void sha256Update(Sha256Context *context, const void *data, size_t length)
Update the SHA-256 context with a portion of the message being hashed.
Definition: tm4c129_crypto_hash.c:749
General definitions for cryptographic algorithms.
void sha224Final(Sha224Context *context, uint8_t *digest)
Finish the SHA-224 message digest.
Definition: tm4c129_crypto_hash.c:635
void sha1Update(Sha1Context *context, const void *data, size_t length)
Update the SHA-1 context with a portion of the message being hashed.
Definition: tm4c129_crypto_hash.c:425
Tiva TM4C129 hash hardware accelerator.
Collection of hash algorithms.
error_t sha1Compute(const void *data, size_t length, uint8_t *digest)
Digest a message using SHA-1.
Definition: tm4c129_crypto_hash.c:365
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
error_t md5Compute(const void *data, size_t length, uint8_t *digest)
Digest a message using MD5.
Definition: tm4c129_crypto_hash.c:160
void sha1Init(Sha1Context *context)
Initialize SHA-1 message digest context.
Definition: tm4c129_crypto_hash.c:402
void sha256FinalRaw(Sha256Context *context, uint8_t *digest)
Finish the SHA-256 message digest (no padding added)
Definition: tm4c129_crypto_hash.c:881
void sha256Init(Sha256Context *context)
Initialize SHA-256 message digest context.
Definition: tm4c129_crypto_hash.c:723
error_t sha256Compute(const void *data, size_t length, uint8_t *digest)
Digest a message using SHA-256.
Definition: tm4c129_crypto_hash.c:686
Debugging facilities.