From d4ce8327ff902b5ecd42d057063c03793e6d91c2 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sun, 15 Sep 2024 02:15:08 +0200 Subject: Organise files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- libkeccak_state_create.c | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 libkeccak_state_create.c (limited to 'libkeccak_state_create.c') diff --git a/libkeccak_state_create.c b/libkeccak_state_create.c deleted file mode 100644 index b5a6990..0000000 --- a/libkeccak_state_create.c +++ /dev/null @@ -1,20 +0,0 @@ -/* 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; -} -- cgit v1.2.3-70-g09d2