blob: 2724e3aaa471e86dfe48238bbafb84b6202fcf55 (
plain) (
tree)
|
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
int
libhashsum_init_keccak_256_hasher(struct libhashsum_hasher *this)
{
return libhashsum_init_keccak_hasher(this, KECCAKN(256));
}
|