aboutsummaryrefslogblamecommitdiffstats
path: root/libhashsum_init_blakeb_hasher.c
blob: 417553bd04cb0c08e6f7e092af702c8c07cbc4e1 (plain) (tree)



























                                                                              
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifdef SUPPORT_BLAKEB


int
libhashsum_init_blakeb_hasher(struct libhashsum_hasher *this, size_t hashbits)
{
	if (hashbits == 384U)
		return libhashsum_init_blake384_hasher(this);
	if (hashbits == 512U)
		return libhashsum_init_blake512_hasher(this);

	errno = EINVAL;
	return -1;
}


#else
int
libhashsum_init_blakeb_hasher(struct libhashsum_hasher *this, size_t hashbits)
{
	(void) this;
	(void) hashbits;
	errno = ENOSYS;
	return -1;
}
#endif