diff options
Diffstat (limited to 'keccaksum.c')
-rw-r--r-- | keccaksum.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/keccaksum.c b/keccaksum.c new file mode 100644 index 0000000..8fc10a8 --- /dev/null +++ b/keccaksum.c @@ -0,0 +1,10 @@ +/* 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); + return RUN("Keccak", "keccaksum", LIBKECCAK_KECCAK_SUFFIX); +} |