blob: b5a699051881075a0afd71d81c8e8edfe3d1e3f2 (
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 *spec)
{
struct libkeccak_state *state = malloc(sizeof(struct libkeccak_state));
if (!state || libkeccak_state_initialise(state, spec)) {
free(state);
return NULL;
}
return state;
}
|