blob: a9ebc845d8c3665b7c8749ec476faabadd338438 (
plain) (
tree)
|
|
/* 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;
}
|