aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-02-20 13:12:28 +0100
committerMattias Andrée <maandree@kth.se>2022-02-20 13:12:28 +0100
commit4963e56568652469411d8b11cc5f861dea67251d (patch)
tree62cc4bc91a1b578dfc6f1d5ae321ef9feaba1f92
parentAdd coverage test (diff)
downloadlibblake-4963e56568652469411d8b11cc5f861dea67251d.tar.gz
libblake-4963e56568652469411d8b11cc5f861dea67251d.tar.bz2
libblake-4963e56568652469411d8b11cc5f861dea67251d.tar.xz
Add todos
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r--test.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/test.c b/test.c
index 7c18b5c..9f47e79 100644
--- a/test.c
+++ b/test.c
@@ -653,9 +653,12 @@ main(void)
CHECK_HEX(0, 00, 12, 32, 00, 45, 67, 82, 9a, b0, cd, fe, ff, 80, 08, cc, 28);
failed |= check_blake1();
+ /* TODO need tests for BLAKE1 with salt and suffix */
failed |= check_kat_file("./kat-blake2s", "BLAKE2s", &hash_blake2s);
failed |= check_kat_file("./kat-blake2b", "BLAKE2b", &hash_blake2b);
/* TODO need tests for BLAKE2[sb] with salt and pepper */
+ /* TODO test libblake_blake2s_update */
+ /* TODO test libblake_blake2b_update */
/* TODO need tests for BLAKE2X[sb] */
return failed;