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