aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-01-19 20:38:00 +0100
committerMattias Andrée <maandree@kth.se>2022-01-19 20:38:00 +0100
commit3abb4003a41a447a5ab6f869c94a3bcde97d3914 (patch)
tree7d91fc5fa5441b3f727ddce0b8dc1a72b83837e2
parentOptimisation for amd64 (diff)
downloadlibblake-3abb4003a41a447a5ab6f869c94a3bcde97d3914.tar.gz
libblake-3abb4003a41a447a5ab6f869c94a3bcde97d3914.tar.bz2
libblake-3abb4003a41a447a5ab6f869c94a3bcde97d3914.tar.xz
Add todos about more tests being needed
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r--test.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test.c b/test.c
index 77bdbc0..4a38423 100644
--- a/test.c
+++ b/test.c
@@ -406,6 +406,7 @@ check_blake2s(void)
CHECK_BLAKE2S_224_STR("", "1fa1291e65248b37b3433475b2a0dd63d54a11ecc4e3e034e7bc1ef4");
CHECK_BLAKE2S_256_STR("", "69217a3079908094e11121d042354a7c1f55b6482ca1a51e1b250dfd1ed0eef9");
+ /* TODO need more tests for BLAKE2s */
return failed;
}
@@ -479,6 +480,7 @@ check_blake2b(void)
CHECK_BLAKE2B_512_STR("The quick brown fox jumps over the lazy dof",
"ab6b007747d8068c02e25a6008db8a77c218d94f3b40d2291a7dc8a62090a744c082ea27af01521a102e42f480a31e9844053f456b4b41e8aa78bbe5c12957bb");
+ /* TODO need more tests for BLAKE2b */
return failed;
}
@@ -494,6 +496,8 @@ main(void)
failed |= check_blake1();
failed |= check_blake2s();
failed |= check_blake2b();
+ /* TODO need tests for BLAKE2Xs */
+ /* TODO need tests for BLAKE2Xb */
return failed;
}