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


static struct testcase testcases[] = {
	{1, 0, "", "69217a3079908094e11121d042354a7c1f55b6482ca1a51e1b250dfd1ed0eef9"}
};


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


int
main(void)
{
	TEST_MAIN("BLAKE2s", BLAKE2S, 0);
}