aboutsummaryrefslogtreecommitdiffstats
path: root/keccak_512.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2024-09-01 18:12:21 +0200
committerMattias Andrée <maandree@kth.se>2024-09-01 18:12:21 +0200
commit85b12e691577b4d4fe09b80b06e91a801dc3dfa9 (patch)
tree69c64bc9a9fc97826fe8cb2d7ef82f00b1193efc /keccak_512.c
parentAdd support for BLAKE2 (but not tree-hashing) (diff)
downloadlibhashsum-85b12e691577b4d4fe09b80b06e91a801dc3dfa9.tar.gz
libhashsum-85b12e691577b4d4fe09b80b06e91a801dc3dfa9.tar.bz2
libhashsum-85b12e691577b4d4fe09b80b06e91a801dc3dfa9.tar.xz
Move test files into t/
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'keccak_512.c')
-rw-r--r--keccak_512.c42
1 files changed, 0 insertions, 42 deletions
diff --git a/keccak_512.c b/keccak_512.c
deleted file mode 100644
index fae3585..0000000
--- a/keccak_512.c
+++ /dev/null
@@ -1,42 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-#ifdef SUPPORT_KECCAK
-# define TEST
-# include "common.h"
-
-
-static struct testcase testcases[] = {
- {1, 0, "",
- "0eab42de4c3ceb9235fc91acffe746b29c29a8c366b7c60e4e67c466f36a4304"
- "c00fa9caf9d87976ba469bcbe06713b435f091ef2769fb160cdab33d3670680e"},
- {0, 1, "\xff",
- "23309d222712996f6caacd52656a11467fc96d8b2666803b2f5ab9019be1f3b1"
- "2044f09cdb3c38050ecab7d0f285a6f31ab1f559e645182ffc506289792e9ef9"},
- {0, 1, "\x7f",
- "23309d222712996f6caacd52656a11467fc96d8b2666803b2f5ab9019be1f3b1"
- "2044f09cdb3c38050ecab7d0f285a6f31ab1f559e645182ffc506289792e9ef9"},
- {0, 1, "\x01",
- "23309d222712996f6caacd52656a11467fc96d8b2666803b2f5ab9019be1f3b1"
- "2044f09cdb3c38050ecab7d0f285a6f31ab1f559e645182ffc506289792e9ef9"},
- {0, 1, "\xfe",
- "7d9025bb145a0814083e934baa80ede67322651de52062bf9eb93623c37efc74"
- "c62240cf8539107f9210c1e1126f79cbaeda6b82b4a8ce6821589c403fa76b9a"},
- {0, 1, "\x7e",
- "7d9025bb145a0814083e934baa80ede67322651de52062bf9eb93623c37efc74"
- "c62240cf8539107f9210c1e1126f79cbaeda6b82b4a8ce6821589c403fa76b9a"},
- {0, 1, "\x00",
- "7d9025bb145a0814083e934baa80ede67322651de52062bf9eb93623c37efc74"
- "c62240cf8539107f9210c1e1126f79cbaeda6b82b4a8ce6821589c403fa76b9a"}
-};
-
-
-#else
-# define TEST_UNSUPPORTED
-# include "common.h"
-#endif
-
-
-int
-main(void)
-{
- TEST_MAIN("Keccak-512", KECCAK_512);
-}