aboutsummaryrefslogblamecommitdiffstats
path: root/libhashsum_init_rawshake_hasher.c
blob: f6cba3b63a1fad6420a07ac99b4b3c6daaabef4a (plain) (tree)




































                                                                                                   
                                                                                              













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


int
libhashsum_init_rawshake_hasher(struct libhashsum_hasher *this, size_t hcapbits, size_t hashbits)
{
	struct libkeccak_spec spec;

	if (hcapbits == 128U) {
		this->algorithm = LIBHASHSUM_RAWSHAKE128;
		this->algorithm_string = "RawSHAKE128";
	} else if (hcapbits == 256U) {
		this->algorithm = LIBHASHSUM_RAWSHAKE256;
		this->algorithm_string = "RawSHAKE256";
	} else if (hcapbits == 512U) {
		this->algorithm = LIBHASHSUM_RAWSHAKE512;
		this->algorithm_string = "RawSHAKE512";
	} else {
		errno = EINVAL;
		return -1;
	}

	if (hashbits == 0U) {
		hashbits = hcapbits;
	} else if (hashbits > (size_t)LONG_MAX) {
		errno = EINVAL;
		return -1;
	}

	if (hashbits != hcapbits) {
		sprintf(this->state.keccak.algostr, "%s[n=%zu]", this->algorithm_string, hashbits);
		this->algorithm_string = this->state.keccak.algostr;
	}

	libkeccak_spec_rawshake(&spec, (long int)hcapbits, (long int)hashbits);
	return libhashsum_init_keccak__(this, hashbits, &spec, 1U, LIBKECCAK_RAWSHAKE_SUFFIX);
}


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