diff options
author | Mattias Andrée <maandree@kth.se> | 2024-09-01 18:16:43 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2024-09-01 18:16:43 +0200 |
commit | 32ad692395f1497afd3ed47565ce139484b4905a (patch) | |
tree | f5cd5de8ae81fb1c254b6102c2f6a1c0d58b9bfe /blake256.c | |
parent | m fix (diff) | |
download | anysum-32ad692395f1497afd3ed47565ce139484b4905a.tar.gz anysum-32ad692395f1497afd3ed47565ce139484b4905a.tar.bz2 anysum-32ad692395f1497afd3ed47565ce139484b4905a.tar.xz |
Organise files
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'blake256.c')
-rw-r--r-- | blake256.c | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/blake256.c b/blake256.c deleted file mode 100644 index fb64714..0000000 --- a/blake256.c +++ /dev/null @@ -1,28 +0,0 @@ -/* See LICENSE file for copyright and license details. */ -#ifdef SUPPORT_BLAKE256 -# define TEST -# include "common.h" - - -static struct testcase testcases[] = { - {1, 0, "", "716f6e863f744b9ac22c97ec7b76ea5f5908bc5b2f67c61510bfc4751384ea7a"}, - {1, 8, "\xcc", "e104256a2bc501f459d03fac96b9014f593e22d30f4de525fa680c3aa189eb4f"}, - {1, 16, "\x41\xfb", "8f341148be7e354fdf38b693d8c6b4e0bd57301a734f6fd35cd85b8491c3ddcd"}, - {1, 24, "\x1f\x87\x7c", "bc334d1069099f10c601883ac6f3e7e9787c6aa53171f76a21923cc5ad3ab937"}, - {1, 32, "\xc1\xec\xfd\xfc", "b672a16f53982bab1e77685b71c0a5f6703ffd46a1c834be69f614bd128d658e"}, - {1, 40, "\x21\xf1\x34\xac\x57", "d9134b2899057a7d8d320cc99e3e116982bc99d3c69d260a7f1ed3da8be68d99"}, - {1, 48, "\xc6\xf5\x0b\xb7\x4e\x29", "637923bd29a35aa3ecbbd2a50549fc32c14cf0fdcaf41c3194dd7414fd224815"} -}; - - -#else -# define TEST_UNSUPPORTED -# include "common.h" -#endif - - -int -main(void) -{ - TEST_MAIN("BLAKE256", BLAKE256); -} |