diff options
author | Mattias Andrée <maandree@kth.se> | 2024-09-15 02:15:08 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2024-09-15 02:15:08 +0200 |
commit | d4ce8327ff902b5ecd42d057063c03793e6d91c2 (patch) | |
tree | 7ec1db1573f12225d6f6c324865b1b49a5a9580d /extra | |
parent | m (diff) | |
download | libkeccak-d4ce8327ff902b5ecd42d057063c03793e6d91c2.tar.gz libkeccak-d4ce8327ff902b5ecd42d057063c03793e6d91c2.tar.bz2 libkeccak-d4ce8327ff902b5ecd42d057063c03793e6d91c2.tar.xz |
Organise files
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | extra/libkeccak_state_copy.c (renamed from libkeccak_state_copy.c) | 2 | ||||
-rw-r--r-- | extra/libkeccak_state_create.c (renamed from libkeccak_state_create.c) | 2 | ||||
-rw-r--r-- | extra/libkeccak_state_duplicate.c (renamed from libkeccak_state_duplicate.c) | 2 | ||||
-rw-r--r-- | extra/libkeccak_state_fast_free.c (renamed from libkeccak_state_fast_free.c) | 2 | ||||
-rw-r--r-- | extra/libkeccak_state_free.c (renamed from libkeccak_state_free.c) | 2 | ||||
-rw-r--r-- | extra/libkeccak_state_marshal.c (renamed from libkeccak_state_marshal.c) | 2 | ||||
-rw-r--r-- | extra/libkeccak_state_reset.c (renamed from libkeccak_state_reset.c) | 2 | ||||
-rw-r--r-- | extra/libkeccak_state_unmarshal.c (renamed from libkeccak_state_unmarshal.c) | 2 | ||||
-rw-r--r-- | extra/libkeccak_state_wipe.c (renamed from libkeccak_state_wipe.c) | 4 | ||||
-rw-r--r-- | extra/libkeccak_state_wipe_message.c (renamed from libkeccak_state_wipe_message.c) | 4 | ||||
-rw-r--r-- | extra/libkeccak_state_wipe_sponge.c (renamed from libkeccak_state_wipe_sponge.c) | 4 |
11 files changed, 14 insertions, 14 deletions
diff --git a/libkeccak_state_copy.c b/extra/libkeccak_state_copy.c index abec573..950fc91 100644 --- a/libkeccak_state_copy.c +++ b/extra/libkeccak_state_copy.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" /** diff --git a/libkeccak_state_create.c b/extra/libkeccak_state_create.c index b5a6990..eda9011 100644 --- a/libkeccak_state_create.c +++ b/extra/libkeccak_state_create.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" /** diff --git a/libkeccak_state_duplicate.c b/extra/libkeccak_state_duplicate.c index 75f85da..3d90d02 100644 --- a/libkeccak_state_duplicate.c +++ b/extra/libkeccak_state_duplicate.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" /** diff --git a/libkeccak_state_fast_free.c b/extra/libkeccak_state_fast_free.c index db2e44f..af75e39 100644 --- a/libkeccak_state_fast_free.c +++ b/extra/libkeccak_state_fast_free.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" extern inline void libkeccak_state_fast_free(struct libkeccak_state *); diff --git a/libkeccak_state_free.c b/extra/libkeccak_state_free.c index 41e635e..6a879b3 100644 --- a/libkeccak_state_free.c +++ b/extra/libkeccak_state_free.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" extern inline void libkeccak_state_free(volatile struct libkeccak_state *); diff --git a/libkeccak_state_marshal.c b/extra/libkeccak_state_marshal.c index 480b4a4..7541164 100644 --- a/libkeccak_state_marshal.c +++ b/extra/libkeccak_state_marshal.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" #if defined(__clang__) diff --git a/libkeccak_state_reset.c b/extra/libkeccak_state_reset.c index bfbbfbd..44eb5a4 100644 --- a/libkeccak_state_reset.c +++ b/extra/libkeccak_state_reset.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" extern inline void libkeccak_state_reset(struct libkeccak_state *); diff --git a/libkeccak_state_unmarshal.c b/extra/libkeccak_state_unmarshal.c index f9604a2..4714566 100644 --- a/libkeccak_state_unmarshal.c +++ b/extra/libkeccak_state_unmarshal.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" #if defined(__clang__) diff --git a/libkeccak_state_wipe.c b/extra/libkeccak_state_wipe.c index e46a25d..728f72f 100644 --- a/libkeccak_state_wipe.c +++ b/extra/libkeccak_state_wipe.c @@ -1,9 +1,9 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" /** - * Wipe sensitive data wihout freeing any data + * Wipe sensitive data without freeing any data * * @param state The state that should be wipe */ diff --git a/libkeccak_state_wipe_message.c b/extra/libkeccak_state_wipe_message.c index 135960c..364eb8e 100644 --- a/libkeccak_state_wipe_message.c +++ b/extra/libkeccak_state_wipe_message.c @@ -1,9 +1,9 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" /** - * Wipe data in the state's message wihout freeing any data + * Wipe data in the state's message without freeing any data * * @param state The state that should be wipe */ diff --git a/libkeccak_state_wipe_sponge.c b/extra/libkeccak_state_wipe_sponge.c index f57ec26..91e845a 100644 --- a/libkeccak_state_wipe_sponge.c +++ b/extra/libkeccak_state_wipe_sponge.c @@ -1,9 +1,9 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" /** - * Wipe data in the state's sponge wihout freeing any data + * Wipe data in the state's sponge without freeing any data * * @param state The state that should be wipe */ |