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 /util | |
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-- | util/libkeccak_behex_lower.c (renamed from libkeccak_behex_lower.c) | 2 | ||||
-rw-r--r-- | util/libkeccak_behex_upper.c (renamed from libkeccak_behex_upper.c) | 2 | ||||
-rw-r--r-- | util/libkeccak_generalised_sum_fd.c (renamed from libkeccak_generalised_sum_fd.c) | 2 | ||||
-rw-r--r-- | util/libkeccak_keccaksum_fd.c (renamed from libkeccak_keccaksum_fd.c) | 2 | ||||
-rw-r--r-- | util/libkeccak_rawshakesum_fd.c (renamed from libkeccak_rawshakesum_fd.c) | 2 | ||||
-rw-r--r-- | util/libkeccak_sha3sum_fd.c (renamed from libkeccak_sha3sum_fd.c) | 2 | ||||
-rw-r--r-- | util/libkeccak_shakesum_fd.c (renamed from libkeccak_shakesum_fd.c) | 2 | ||||
-rw-r--r-- | util/libkeccak_unhex.c (renamed from libkeccak_unhex.c) | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/libkeccak_behex_lower.c b/util/libkeccak_behex_lower.c index fe71e19..07593e8 100644 --- a/libkeccak_behex_lower.c +++ b/util/libkeccak_behex_lower.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" /** diff --git a/libkeccak_behex_upper.c b/util/libkeccak_behex_upper.c index e3bae6a..5186a28 100644 --- a/libkeccak_behex_upper.c +++ b/util/libkeccak_behex_upper.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" /** diff --git a/libkeccak_generalised_sum_fd.c b/util/libkeccak_generalised_sum_fd.c index 11431f0..bad35e9 100644 --- a/libkeccak_generalised_sum_fd.c +++ b/util/libkeccak_generalised_sum_fd.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" #include <stdio.h> diff --git a/libkeccak_keccaksum_fd.c b/util/libkeccak_keccaksum_fd.c index f738115..560e390 100644 --- a/libkeccak_keccaksum_fd.c +++ b/util/libkeccak_keccaksum_fd.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" extern inline int libkeccak_keccaksum_fd(int, struct libkeccak_state *restrict, const struct libkeccak_spec *restrict, void *restrict); diff --git a/libkeccak_rawshakesum_fd.c b/util/libkeccak_rawshakesum_fd.c index a988cf2..c9c66ec 100644 --- a/libkeccak_rawshakesum_fd.c +++ b/util/libkeccak_rawshakesum_fd.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" extern inline int libkeccak_rawshakesum_fd(int, struct libkeccak_state *restrict, long, long, void *restrict); diff --git a/libkeccak_sha3sum_fd.c b/util/libkeccak_sha3sum_fd.c index 6662ad4..43be4b7 100644 --- a/libkeccak_sha3sum_fd.c +++ b/util/libkeccak_sha3sum_fd.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" extern inline int libkeccak_sha3sum_fd(int, struct libkeccak_state *restrict, long, void *restrict); diff --git a/libkeccak_shakesum_fd.c b/util/libkeccak_shakesum_fd.c index 45289f7..9bb4b80 100644 --- a/libkeccak_shakesum_fd.c +++ b/util/libkeccak_shakesum_fd.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" extern inline int libkeccak_shakesum_fd(int, struct libkeccak_state *restrict, long, long, void *restrict); diff --git a/libkeccak_unhex.c b/util/libkeccak_unhex.c index 26a6e7d..b32a3f3 100644 --- a/libkeccak_unhex.c +++ b/util/libkeccak_unhex.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include "common.h" +#include "../common.h" /** |