aboutsummaryrefslogtreecommitdiffstats
path: root/sha_512_256.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2024-08-25 23:28:25 +0200
committerMattias Andrée <maandree@kth.se>2024-08-25 23:28:25 +0200
commitb35cea4b8d82a28994351f3b550e8191ee1d94bf (patch)
tree24ce0d8728711e55d5532a57db477b53521f8bc4 /sha_512_256.c
downloadanysum-b35cea4b8d82a28994351f3b550e8191ee1d94bf.tar.gz
anysum-b35cea4b8d82a28994351f3b550e8191ee1d94bf.tar.bz2
anysum-b35cea4b8d82a28994351f3b550e8191ee1d94bf.tar.xz
First commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r--sha_512_256.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/sha_512_256.c b/sha_512_256.c
new file mode 100644
index 0000000..f4b168b
--- /dev/null
+++ b/sha_512_256.c
@@ -0,0 +1,26 @@
+/* See LICENSE file for copyright and license details. */
+#ifdef SUPPORT_SHA2
+# define TEST
+# include "common.h"
+
+
+static struct testcase testcases[] = {
+ {1, 0, "", "c672b8d1ef56ed28ab87c3622c5114069bdd3ad7b8f9737498d0c01ecef0967a"},
+ {1000UL, 0, "A", "6ad592c8991fa0fc0fc78b6c2e73f3b55db74afeb1027a5aeacb787fb531e64a"},
+ {1, 0, "abc", "53048e2681941ef99b2e29b76b4c7dabe4c2d0c634fc6d46e0e2f13107e7af23"},
+ {1, 0, "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmnhijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu",
+ "3928e184fb8690f840da3988121d31be65cb9d3ef83ee6146feac861e19b563a"}
+};
+
+
+#else
+# define TEST_UNSUPPORTED
+# include "common.h"
+#endif
+
+
+int
+main(void)
+{
+ TEST_MAIN("SHA-512/256", SHA_512_256);
+}