aboutsummaryrefslogblamecommitdiffstats
path: root/libhashsum_init_blake224_hasher.c
blob: 642af8d84663783e833249ce07cb4964b0dd413d (plain) (tree)





































































                                                                                                                






















                                                               
   
                                                                                 


                                              
                                                                                           







                                                        
                                                               





                 
                                                                                 

                    
                    



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


LIBHASHSUM_1_NONNULL_
static size_t
process(struct libhashsum_hasher *this, const void *data, size_t bytes)
{
	return libblake_blake224_update(&this->state.blake224.s, data, bytes);
}


LIBHASHSUM_1_NONNULL_
static int
finalise_const(struct libhashsum_hasher *this, const void *data, size_t bytes, unsigned extra_bits)
{
	const uint8_t *m = data;
	size_t r;

	if (extra_bits > 7U) {
		errno = EINVAL;
		return -1;
	}

	r = libblake_blake224_update(&this->state.blake224.s, data, bytes);
	m = &m[r];
	bytes -= r;

	memcpy(this->state.blake224.buf, m, bytes + (size_t)(extra_bits > 0U));
	if (extra_bits)
		this->state.blake224.buf[bytes] = libhashsum_reverse_byte__(this->state.blake224.buf[bytes]);
	libblake_blake224_digest(&this->state.blake224.s, this->state.blake224.buf, bytes,
	                         extra_bits, NULL, this->state.blake224.buf);
	memset(&this->state.blake224.s, 0, sizeof(this->state.blake224.s));
	this->hash_output = this->state.blake224.buf;
	return 0;
}


LIBHASHSUM_1_NONNULL_
static int
finalise(struct libhashsum_hasher *this, void *data, size_t bytes, unsigned extra_bits, size_t size)
{
	uint8_t *m = data;
	size_t r;

	if (extra_bits > 7U) {
		errno = EINVAL;
		return -1;
	}

	r = libblake_blake224_update(&this->state.blake224.s, data, bytes);
	m = &m[r];
	bytes -= r;
	size -= r;

	if (size < libblake_blake224_digest_get_required_input_size(bytes, extra_bits, NULL)) {
		memcpy(this->state.blake224.buf, m, bytes + (size_t)(extra_bits > 0U));
		m = this->state.blake224.buf;
	}
	if (extra_bits)
		m[bytes] = libhashsum_reverse_byte__(m[bytes]);
	libblake_blake224_digest(&this->state.blake224.s, m, bytes, extra_bits, NULL, this->state.blake224.buf);
	memset(&this->state.blake224.s, 0, sizeof(this->state.blake224.s));
	this->hash_output = this->state.blake224.buf;
	return 0;
}


static const char *
mkalgostr(char *buf, const char *name, const uint8_t *salt)
{
	char *p;
	size_t i;
	if (!salt)
		return name;
	for (i = 0; i < 16U; i++)
		if (salt[i])
			goto nonzero;
	return name;
nonzero:
	p = stpcpy(stpcpy(buf, name), "[salt=");
	for (i = 0; i < 16U; i++) {
		*p++ = "0123456789abcdef"[(salt[i] >> 4) & 15];
		*p++ = "0123456789abcdef"[(salt[i] >> 0) & 15];
	}
	*p++ = ']';
	*p++ = '\0';
	return buf;
}


int
libhashsum_init_blake224_hasher(struct libhashsum_hasher *this, const void *salt)
{
	libblake_init();
	this->algorithm = LIBHASHSUM_BLAKE224;
	this->algorithm_string = mkalgostr(this->state.blake224.algostr, "BLAKE224", salt);
	this->input_block_size = 64U;
	this->hash_size = LIBHASHSUM_BLAKE224_HASH_SIZE;
	this->hash_output = NULL;
	this->supports_non_whole_bytes = 1;
	this->process = &process;
	this->finalise_const = &finalise_const;
	this->finalise = &finalise;
	this->destroy = NULL;
	libblake_blake224_init2(&this->state.blake224.s, salt);
	return 0;
}


#else
int
libhashsum_init_blake224_hasher(struct libhashsum_hasher *this, const void *salt)
{
	(void) this;
	(void) salt;
	errno = ENOSYS;
	return -1;
}
#endif