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 /tests | |
parent | 75688e2f713956fcd1e78cb95cf78bc624552345 (diff) |
Cleanup: names of *_core_present() functions, Makefile.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-hash.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test-hash.c b/tests/test-hash.c index 8144459..671f200 100644 --- a/tests/test-hash.c +++ b/tests/test-hash.c @@ -177,7 +177,7 @@ int main (int argc, char *argv[]) { int ok = 1; - if (hash_sha1_core_present() == HAL_OK) { + if (hal_hash_sha1_core_present() == HAL_OK) { ok &= test_hash(hal_hash_sha1, nist_512_single, sha1_single_digest, "SHA-1 single block"); ok &= test_hash(hal_hash_sha1, nist_512_double, sha1_double_digest, "SHA-1 double block"); } @@ -185,7 +185,7 @@ int main (int argc, char *argv[]) printf("SHA-1 core not present, skipping tests which depend on it\n"); } - if (hash_sha256_core_present() == HAL_OK) { + if (hal_hash_sha256_core_present() == HAL_OK) { ok &= test_hash(hal_hash_sha256, nist_512_single, sha256_single_digest, "SHA-256 single block"); ok &= test_hash(hal_hash_sha256, nist_512_double, sha256_double_digest, "SHA-256 double block"); } @@ -193,7 +193,7 @@ int main (int argc, char *argv[]) printf("SHA-256 core not present, skipping tests which depend on it\n"); } - if (hash_sha512_core_present() == HAL_OK) { + if (hal_hash_sha512_core_present() == HAL_OK) { ok &= test_hash(hal_hash_sha512_224, nist_1024_single, sha512_224_single_digest, "SHA-512/224 single block"); ok &= test_hash(hal_hash_sha512_224, nist_1024_double, sha512_224_double_digest, "SHA-512/224 double block"); |