diff options
Diffstat (limited to 'keccak-224sum.c')
-rw-r--r-- | keccak-224sum.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/keccak-224sum.c b/keccak-224sum.c new file mode 100644 index 0000000..f7d3095 --- /dev/null +++ b/keccak-224sum.c @@ -0,0 +1,11 @@ +/* See LICENSE file for copyright and license details. */ +#include "common.h" + +int +main(int argc, char *argv[]) +{ + libkeccak_generalised_spec_t spec; + libkeccak_generalised_spec_initialise(&spec); + libkeccak_spec_keccak((libkeccak_spec_t *)&spec, 224); + return RUN("Keccak", "keccak-224sum", LIBKECCAK_KECCAK_SUFFIX); +} |