aboutsummaryrefslogtreecommitdiffstats
path: root/libkeccak_state_create.c
blob: a9ebc845d8c3665b7c8749ec476faabadd338438 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* See LICENSE file for copyright and license details. */
#include "common.h"


/**
 * Wrapper for `libkeccak_state_initialise` that also allocates the states
 * 
 * @param   spec  The specifications for the state
 * @return        The state, `NULL` on error
 */
struct libkeccak_state *
libkeccak_state_create(const struct libkeccak_spec *restrict spec)
{
	struct libkeccak_state *restrict state = malloc(sizeof(struct libkeccak_state));
	if (!state || libkeccak_state_initialise(state, spec)) {
		free(state);
		return NULL;
	}
	return state;
}