aboutsummaryrefslogtreecommitdiffstats
path: root/sha_512_224.c
diff options
context:
space:
mode:
Diffstat (limited to 'sha_512_224.c')
-rw-r--r--sha_512_224.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/sha_512_224.c b/sha_512_224.c
new file mode 100644
index 0000000..8771f88
--- /dev/null
+++ b/sha_512_224.c
@@ -0,0 +1,19 @@
+/* See LICENSE file for copyright and license details. */
+#define TEST
+#include "common.h"
+
+
+static struct testcase testcases[] = {
+ {1, 0, "", "6ed0dd02806fa89e25de060c19d3ac86cabb87d6a0ddd05c333b84f4"},
+ {1000UL, 0, "A", "3000c31a7ab8e9c760257073c4d3be370fab6d1d28eb027c6d874f29"},
+ {1, 0, "abc", "4634270f707b6a54daae7530460842e20e37ed265ceee9a43e8924aa"},
+ {1, 0, "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmnhijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu",
+ "23fec5bb94d60b23308192640b0c453335d664734fe40e7268674af9"}
+};
+
+
+int
+main(void)
+{
+ TEST_MAIN("SHA-512/224", SHA_512_224);
+}