libopencm3
A free/libre/open-source firmware library for various ARM Cortex-M3 microcontrollers.
|
#include <libopencm3/stm32/hash.h>
Go to the source code of this file.
Functions | |
void | hash_set_mode (uint8_t mode) |
HASH Set Mode. More... | |
void | hash_set_algorithm (uint8_t algorithm) |
HASH Set Algorithm. More... | |
void | hash_set_data_type (uint8_t datatype) |
HASH Set Data Type. More... | |
void | hash_set_key_length (uint8_t keylength) |
HASH Set Key Length. More... | |
void | hash_set_last_word_valid_bits (uint8_t validbits) |
HASH Set Last Word Valid Bits. More... | |
void | hash_init () |
HASH Init. More... | |
void | hash_add_data (uint32_t data) |
HASH Add data. More... | |
void | hash_digest () |
HASH Digest. More... | |
void | hash_get_result (uint32_t *data) |
HASH Get Hash Result. More... | |