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