From 6a41e6dc9dda34bca8b528fd1a80e82f7ee7e64b Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sun, 10 Feb 2019 18:02:54 +0100 Subject: Add tests for HMAC MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- test.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'test.c') diff --git a/test.c b/test.c index 87da91f..9eb34a6 100644 --- a/test.c +++ b/test.c @@ -77,6 +77,7 @@ main(int argc, char *argv[]) { char buf[8096], str[2048]; struct libsha2_state s; + struct libsha2_hmac_state hs; int skip_huge, fds[2], status; size_t i, j, n, len; ssize_t r; @@ -323,6 +324,30 @@ main(int argc, char *argv[]) test_bits("2b", 6, LIBSHA2_224, "44b64a6dbd91d49df5af0c9f8e001b1378e1dc29c4b891350e5d7bd9"); test_bits("0c", 7, LIBSHA2_224, "20f25c1fe299cf337ff7ff9cc4b5b5afac076759720174a29ba79db6"); + test(!libsha2_hmac_init(&hs, LIBSHA2_256, "", 0)); + test(libsha2_hmac_state_output_size(&hs) == 32); + libsha2_hmac_digest(&hs, "", 0, buf); + libsha2_behex_lower(str, buf, libsha2_hmac_state_output_size(&hs)); + test_str(str, "b613679a0814d9ec772f95d778c35fc5ff1697c493715653c6c712144292c5ad"); + + test(!libsha2_hmac_init(&hs, LIBSHA2_256, "key", 3 << 3)); + test(libsha2_hmac_state_output_size(&hs) == 32); + libsha2_hmac_digest(&hs, "The quick brown fox jumps over the lazy dog", + (sizeof("The quick brown fox jumps over the lazy dog") - 1) << 3, buf); + libsha2_behex_lower(str, buf, libsha2_hmac_state_output_size(&hs)); + test_str(str, "f7bc83f430538424b13298e6aa6fb143ef4d59a14946175997479dbc2d1a3cd8"); + + n = sizeof("The quick brown fox jumps over the lazy dog") - 1; + for (i = 1; i < n; i++) { + test(!libsha2_hmac_init(&hs, LIBSHA2_256, "key", 3 << 3)); + test(libsha2_hmac_state_output_size(&hs) == 32); + for (j = 0; j + i < n; j += i) + libsha2_hmac_update(&hs, &"The quick brown fox jumps over the lazy dog"[j], i << 3); + libsha2_hmac_digest(&hs, &"The quick brown fox jumps over the lazy dog"[j], (n - j) << 3, buf); + libsha2_behex_lower(str, buf, libsha2_hmac_state_output_size(&hs)); + test_str(str, "f7bc83f430538424b13298e6aa6fb143ef4d59a14946175997479dbc2d1a3cd8"); + } + test(!errno); return 0; -- cgit v1.2.3-70-g09d2