blob: 58408df28a7270a9be1bacdfe835bf8cd7faf9f1 (
plain) (
tree)
|
|
/* 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);
}
|