blob: 4dd06478735f2a40eda61e9373ac61009ddf969d (
plain) (
tree)
|
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
int
libhashsum_init_keccak_384_hasher(struct libhashsum_hasher *this)
{
int r = libhashsum_init_keccak_hasher(this, KECCAKN(384));
this->standard_partial_byte_output_encoding = LIBHASHSUM_UNSUPPORTED;
return r;
}
|