aboutsummaryrefslogtreecommitdiffstats
path: root/keccak_512.c
blob: d30563a29e6893d5904e1f89d7e1e3d411e93ed9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* See LICENSE file for copyright and license details. */
#ifdef SUPPORT_KECCAK
# define TEST
# include "common.h"


static struct testcase testcases[] = {
	{1, 0, "",
	 "0eab42de4c3ceb9235fc91acffe746b29c29a8c366b7c60e4e67c466f36a4304"
	 "c00fa9caf9d87976ba469bcbe06713b435f091ef2769fb160cdab33d3670680e"}
};


#else
# define TEST_UNSUPPORTED
# include "common.h"
#endif


int
main(void)
{
	TEST_MAIN("Keccak-512", KECCAK_512);
}