aboutsummaryrefslogtreecommitdiffstats
path: root/rawshake512sum.c
blob: be1d8acf56f8ebb4e2b22f98e115c420bdb8553f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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_rawshake((libkeccak_spec_t *)&spec, 512, 512);
	return RUN("RawSHAKE", "rawshake512sum", LIBKECCAK_RAWSHAKE_SUFFIX);
}