From 73100bf2aaa8a1bfc4b92f42a7461b99c587ef3d Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Wed, 17 Jul 2019 17:03:37 -0400 Subject: add hmac-sha2 and update files --- run-tests.c | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 run-tests.c (limited to 'run-tests.c') diff --git a/run-tests.c b/run-tests.c new file mode 100644 index 0000000..9ba120d --- /dev/null +++ b/run-tests.c @@ -0,0 +1,34 @@ +#include // printf() +#include // strlen() +#include "sha2.h" +#include "tests.h" + +static void print_hash(const uint8_t * const hash) { + for (size_t i = 0; i < SHA256_HASH_SIZE; i++) { + printf("%02x", hash[i]); + } +} + +static void on_test_fail( + const int algo, + const char * const src, + const uint8_t * const got_hash, + const uint8_t * const expected_hash +) { + printf("sha%d,\"%s\",", algo, src); + print_hash(got_hash); + printf(","); + print_hash(expected_hash); + printf("\n"); +} + +int main(int argc, char *argv[]) { + (void) argc; + (void) argv; + + // run internal tests + printf("algo,input,result,expected\n"); + run_tests(on_test_fail); + + return 0; +} -- cgit v1.2.3