aboutsummaryrefslogtreecommitdiffstats
path: root/libhashsum_init_keccak_384_hasher.c
blob: 4dd06478735f2a40eda61e9373ac61009ddf969d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/* 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;
}