aboutsummaryrefslogtreecommitdiffstats
path: root/t/keccak_512.c
diff options
context:
space:
mode:
Diffstat (limited to 't/keccak_512.c')
-rw-r--r--t/keccak_512.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/t/keccak_512.c b/t/keccak_512.c
new file mode 100644
index 0000000..d30563a
--- /dev/null
+++ b/t/keccak_512.c
@@ -0,0 +1,24 @@
+/* See LICENSE file for copyright and license details. */
+#ifdef SUPPORT_KECCAK
+# define TEST
+# include "common.h"
+
+
+static struct testcase testcases[] = {
+ {1, 0, "",
+ "0eab42de4c3ceb9235fc91acffe746b29c29a8c366b7c60e4e67c466f36a4304"
+ "c00fa9caf9d87976ba469bcbe06713b435f091ef2769fb160cdab33d3670680e"}
+};
+
+
+#else
+# define TEST_UNSUPPORTED
+# include "common.h"
+#endif
+
+
+int
+main(void)
+{
+ TEST_MAIN("Keccak-512", KECCAK_512);
+}