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 /hmac | |
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-- | hmac/libkeccak_hmac_copy.c (renamed from libkeccak_hmac_copy.c) | 2 | ||||
-rw-r--r-- | hmac/libkeccak_hmac_create.c (renamed from libkeccak_hmac_create.c) | 2 | ||||
-rw-r--r-- | hmac/libkeccak_hmac_destroy.c (renamed from libkeccak_hmac_destroy.c) | 2 | ||||
-rw-r--r-- | hmac/libkeccak_hmac_digest.c (renamed from libkeccak_hmac_digest.c) | 2 | ||||
-rw-r--r-- | hmac/libkeccak_hmac_duplicate.c (renamed from libkeccak_hmac_duplicate.c) | 2 | ||||
-rw-r--r-- | hmac/libkeccak_hmac_fast_destroy.c (renamed from libkeccak_hmac_fast_destroy.c) | 2 | ||||
-rw-r--r-- | hmac/libkeccak_hmac_fast_digest.c (renamed from libkeccak_hmac_fast_digest.c) | 2 | ||||
-rw-r--r-- | hmac/libkeccak_hmac_fast_free.c (renamed from libkeccak_hmac_fast_free.c) | 2 | ||||
-rw-r--r-- | hmac/libkeccak_hmac_fast_update.c (renamed from libkeccak_hmac_fast_update.c) | 2 | ||||
-rw-r--r-- | hmac/libkeccak_hmac_free.c (renamed from libkeccak_hmac_free.c) | 2 | ||||
-rw-r--r-- | hmac/libkeccak_hmac_initialise.c (renamed from libkeccak_hmac_initialise.c) | 2 | ||||
-rw-r--r-- | hmac/libkeccak_hmac_marshal.c (renamed from libkeccak_hmac_marshal.c) | 2 | ||||
-rw-r--r-- | hmac/libkeccak_hmac_reset.c (renamed from libkeccak_hmac_reset.c) | 2 | ||||
-rw-r--r-- | hmac/libkeccak_hmac_set_key.c (renamed from libkeccak_hmac_set_key.c) | 2 | ||||
-rw-r--r-- | hmac/libkeccak_hmac_unmarshal.c (renamed from libkeccak_hmac_unmarshal.c) | 2 | ||||
-rw-r--r-- | hmac/libkeccak_hmac_update.c (renamed from libkeccak_hmac_update.c) | 2 | ||||
-rw-r--r-- | hmac/libkeccak_hmac_wipe.c (renamed from libkeccak_hmac_wipe.c) | 2 |
17 files changed, 17 insertions, 17 deletions
diff --git a/libkeccak_hmac_copy.c b/hmac/libkeccak_hmac_copy.c index 6c61553..8a4077b 100644 --- a/libkeccak_hmac_copy.c +++ b/hmac/libkeccak_hmac_copy.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" /** diff --git a/libkeccak_hmac_create.c b/hmac/libkeccak_hmac_create.c index 15286b6..ef6f025 100644 --- a/libkeccak_hmac_create.c +++ b/hmac/libkeccak_hmac_create.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" extern inline struct libkeccak_hmac_state *libkeccak_hmac_create(const struct libkeccak_spec *restrict, const void *restrict, size_t); diff --git a/libkeccak_hmac_destroy.c b/hmac/libkeccak_hmac_destroy.c index 9444c0d..f2d7419 100644 --- a/libkeccak_hmac_destroy.c +++ b/hmac/libkeccak_hmac_destroy.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" extern inline void libkeccak_hmac_destroy(volatile struct libkeccak_hmac_state *); diff --git a/libkeccak_hmac_digest.c b/hmac/libkeccak_hmac_digest.c index 2e1732f..a9e3609 100644 --- a/libkeccak_hmac_digest.c +++ b/hmac/libkeccak_hmac_digest.c @@ -1,6 +1,6 @@ /* See LICENSE file for copyright and license details. */ #define NEED_EXPLICIT_BZERO 1 -#include "common.h" +#include "../common.h" /** diff --git a/libkeccak_hmac_duplicate.c b/hmac/libkeccak_hmac_duplicate.c index 6c07854..959eae9 100644 --- a/libkeccak_hmac_duplicate.c +++ b/hmac/libkeccak_hmac_duplicate.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" extern inline struct libkeccak_hmac_state *libkeccak_hmac_duplicate(const struct libkeccak_hmac_state *); diff --git a/libkeccak_hmac_fast_destroy.c b/hmac/libkeccak_hmac_fast_destroy.c index 529175e..7d9feab 100644 --- a/libkeccak_hmac_fast_destroy.c +++ b/hmac/libkeccak_hmac_fast_destroy.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" extern inline void libkeccak_hmac_fast_destroy(struct libkeccak_hmac_state *); diff --git a/libkeccak_hmac_fast_digest.c b/hmac/libkeccak_hmac_fast_digest.c index db242a5..dc98136 100644 --- a/libkeccak_hmac_fast_digest.c +++ b/hmac/libkeccak_hmac_fast_digest.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" /** diff --git a/libkeccak_hmac_fast_free.c b/hmac/libkeccak_hmac_fast_free.c index 897f6e1..5a38207 100644 --- a/libkeccak_hmac_fast_free.c +++ b/hmac/libkeccak_hmac_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_hmac_fast_free(struct libkeccak_hmac_state *); diff --git a/libkeccak_hmac_fast_update.c b/hmac/libkeccak_hmac_fast_update.c index 50c34dd..fe163b7 100644 --- a/libkeccak_hmac_fast_update.c +++ b/hmac/libkeccak_hmac_fast_update.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" /** diff --git a/libkeccak_hmac_free.c b/hmac/libkeccak_hmac_free.c index 2e8e3fb..d31e3a8 100644 --- a/libkeccak_hmac_free.c +++ b/hmac/libkeccak_hmac_free.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" extern inline void libkeccak_hmac_free(volatile struct libkeccak_hmac_state *); diff --git a/libkeccak_hmac_initialise.c b/hmac/libkeccak_hmac_initialise.c index b2f2552..ca71860 100644 --- a/libkeccak_hmac_initialise.c +++ b/hmac/libkeccak_hmac_initialise.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" extern inline int diff --git a/libkeccak_hmac_marshal.c b/hmac/libkeccak_hmac_marshal.c index 604bde2..acd8f63 100644 --- a/libkeccak_hmac_marshal.c +++ b/hmac/libkeccak_hmac_marshal.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" extern inline size_t libkeccak_hmac_marshal(const struct libkeccak_hmac_state *restrict, void *restrict); diff --git a/libkeccak_hmac_reset.c b/hmac/libkeccak_hmac_reset.c index 13d7c0e..b6eccf5 100644 --- a/libkeccak_hmac_reset.c +++ b/hmac/libkeccak_hmac_reset.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" extern inline int libkeccak_hmac_reset(struct libkeccak_hmac_state *restrict, const void *restrict, size_t); diff --git a/libkeccak_hmac_set_key.c b/hmac/libkeccak_hmac_set_key.c index 2795e4f..e329f5b 100644 --- a/libkeccak_hmac_set_key.c +++ b/hmac/libkeccak_hmac_set_key.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" /** diff --git a/libkeccak_hmac_unmarshal.c b/hmac/libkeccak_hmac_unmarshal.c index 070c7b5..ddada17 100644 --- a/libkeccak_hmac_unmarshal.c +++ b/hmac/libkeccak_hmac_unmarshal.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" #if defined(__clang__) # pragma clang diagnostic ignored "-Wcast-align" diff --git a/libkeccak_hmac_update.c b/hmac/libkeccak_hmac_update.c index 6f38348..1717390 100644 --- a/libkeccak_hmac_update.c +++ b/hmac/libkeccak_hmac_update.c @@ -1,6 +1,6 @@ /* See LICENSE file for copyright and license details. */ #define NEED_EXPLICIT_BZERO 1 -#include "common.h" +#include "../common.h" /** diff --git a/libkeccak_hmac_wipe.c b/hmac/libkeccak_hmac_wipe.c index 11d268a..ec0be2d 100644 --- a/libkeccak_hmac_wipe.c +++ b/hmac/libkeccak_hmac_wipe.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" /** |