blob: 5a89d722d001ca9c61d8e0af1be5b96cf9a28bef (
plain) (
tree)
|
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
int
libhashsum_init_sha3_256_hasher(struct libhashsum_hasher *this)
{
return libhashsum_init_sha3_hasher(this, 256);
}
|