aboutsummaryrefslogtreecommitdiffstats
path: root/sha3-256sum.c
blob: 6e976d15c33d808d4bf19a1f7ed34ee9c49bca77 (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_sha3((libkeccak_spec_t *)&spec, 256);
	return RUN(LIBKECCAK_SHA3_SUFFIX);
}