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