[tor-commits] [tor] branch main updated: Add a test vector for crypto_mac_sha3

gitolite role git at cupani.torproject.org
Thu Jan 19 15:10:23 UTC 2023


This is an automated email from the git hooks/post-receive script.

dgoulet pushed a commit to branch main
in repository tor.

The following commit(s) were added to refs/heads/main by this push:
     new 5629a391c2 Add a test vector for crypto_mac_sha3
     new 49f10c5130 Merge branch 'tor-gitlab/mr/683'
5629a391c2 is described below

commit 5629a391c25db8611ec43065ebbdce492b30b669
Author: Nick Mathewson <nickm at torproject.org>
AuthorDate: Thu Jan 19 09:06:47 2023 -0500

    Add a test vector for crypto_mac_sha3
---
 src/test/test_crypto.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/src/test/test_crypto.c b/src/test/test_crypto.c
index 87e309f25a..fd5a14b503 100644
--- a/src/test/test_crypto.c
+++ b/src/test/test_crypto.c
@@ -1043,6 +1043,7 @@ test_crypto_mac_sha3(void *arg)
 {
   const char msg[] = "i am in a library somewhere using my computer";
   const char key[] = "i'm from the past talking to the future.";
+  char *mem_op_hex_tmp = NULL;
 
   uint8_t hmac_test[DIGEST256_LEN];
   char hmac_manual[DIGEST256_LEN];
@@ -1077,7 +1078,12 @@ test_crypto_mac_sha3(void *arg)
   /* Now compare the two results */
   tt_mem_op(hmac_test, OP_EQ, hmac_manual, DIGEST256_LEN);
 
- done: ;
+  /* Check against a known correct value (computed from python) */
+  test_memeq_hex(hmac_test,
+                  "753fba6d87d49497238a512a3772dd29"
+                  "1e55f7d1cd332c9fb5c967c7a10a13ca");
+ done:
+  tor_free(mem_op_hex_tmp);
 }
 
 /** Run unit tests for our public key crypto functions */

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the tor-commits mailing list