From 9e00faa503b1ac5ee4d01db84accdaf27f08f436 Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Mon, 25 May 2015 16:36:12 -0400 Subject: Cleanup: names of *_core_present() functions, Makefile. --- hash.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'hash.c') diff --git a/hash.c b/hash.c index ae49c06..bd0daa8 100644 --- a/hash.c +++ b/hash.c @@ -92,17 +92,17 @@ void hal_hash_state_initialize(void *_state) * Report whether cores are present. */ -hal_error_t hash_sha1_core_present(void) +hal_error_t hal_hash_sha1_core_present(void) { return hal_io_expected(SHA1_ADDR_NAME0, (const uint8_t *) (SHA1_NAME0 SHA1_NAME1), 8); } -hal_error_t hash_sha256_core_present(void) +hal_error_t hal_hash_sha256_core_present(void) { return hal_io_expected(SHA256_ADDR_NAME0, (const uint8_t *) (SHA256_NAME0 SHA256_NAME1), 8); } -hal_error_t hash_sha512_core_present(void) +hal_error_t hal_hash_sha512_core_present(void) { return hal_io_expected(SHA512_ADDR_NAME0, (const uint8_t *) (SHA512_NAME0 SHA512_NAME1), 8); } -- cgit v1.2.3