diff options
author | Rob Austein <sra@hactrn.net> | 2015-05-25 16:36:12 -0400 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2015-05-25 16:36:12 -0400 |
commit | 9e00faa503b1ac5ee4d01db84accdaf27f08f436 (patch) | |
tree | f420f712912d5112e27a1a2bc8e60a409b8d06b1 /cryptech.h | |
parent | 75688e2f713956fcd1e78cb95cf78bc624552345 (diff) |
Cleanup: names of *_core_present() functions, Makefile.
Diffstat (limited to 'cryptech.h')
-rw-r--r-- | cryptech.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -479,9 +479,9 @@ extern hal_error_t hal_io_wait_valid(off_t offset); extern hal_error_t hal_get_random(void *buffer, const size_t length); extern void hal_hash_set_debug(int onoff); -extern hal_error_t hash_sha1_core_present(void); -extern hal_error_t hash_sha256_core_present(void); -extern hal_error_t hash_sha512_core_present(void); +extern hal_error_t hal_hash_sha1_core_present(void); +extern hal_error_t hal_hash_sha256_core_present(void); +extern hal_error_t hal_hash_sha512_core_present(void); extern size_t hal_hash_state_size(void); extern void hal_hash_state_initialize(void *state); extern hal_error_t hal_hash_sha1(void *state, const uint8_t * data_buffer, const size_t data_buffer_length, |