diff options
Diffstat (limited to 'src/crypto/cipher')
-rw-r--r-- | src/crypto/cipher/aes128_ctr/nacl/cipher_aes128_ctr_nacl.c | 2 | ||||
-rw-r--r-- | src/crypto/cipher/blowfish_ctr/builtin/blowfish_ctr.c | 2 | ||||
-rw-r--r-- | src/crypto/cipher/ciphers.c.in | 2 | ||||
-rw-r--r-- | src/crypto/cipher/null/memcpy/null_memcpy.c | 2 | ||||
-rw-r--r-- | src/crypto/cipher/salsa20/nacl/salsa20_nacl.c | 2 | ||||
-rw-r--r-- | src/crypto/cipher/salsa2012/nacl/salsa2012_nacl.c | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/src/crypto/cipher/aes128_ctr/nacl/cipher_aes128_ctr_nacl.c b/src/crypto/cipher/aes128_ctr/nacl/cipher_aes128_ctr_nacl.c index 7c75b7d..a520732 100644 --- a/src/crypto/cipher/aes128_ctr/nacl/cipher_aes128_ctr_nacl.c +++ b/src/crypto/cipher/aes128_ctr/nacl/cipher_aes128_ctr_nacl.c @@ -24,7 +24,7 @@ */ -#include "../../../../fastd.h" +#include "../../../../crypto.h" #include <crypto_stream_aes128ctr.h> diff --git a/src/crypto/cipher/blowfish_ctr/builtin/blowfish_ctr.c b/src/crypto/cipher/blowfish_ctr/builtin/blowfish_ctr.c index d657694..0ca8d2d 100644 --- a/src/crypto/cipher/blowfish_ctr/builtin/blowfish_ctr.c +++ b/src/crypto/cipher/blowfish_ctr/builtin/blowfish_ctr.c @@ -24,7 +24,7 @@ */ -#include "../../../../fastd.h" +#include "../../../../crypto.h" static const uint32_t Sdefault[4][256] = { { diff --git a/src/crypto/cipher/ciphers.c.in b/src/crypto/cipher/ciphers.c.in index 667cfac..c912e60 100644 --- a/src/crypto/cipher/ciphers.c.in +++ b/src/crypto/cipher/ciphers.c.in @@ -24,8 +24,8 @@ */ -#include <src/fastd.h> #include <src/config.h> +#include <src/crypto.h> @CIPHER_DEFINITIONS@ diff --git a/src/crypto/cipher/null/memcpy/null_memcpy.c b/src/crypto/cipher/null/memcpy/null_memcpy.c index c260ffb..45ad297 100644 --- a/src/crypto/cipher/null/memcpy/null_memcpy.c +++ b/src/crypto/cipher/null/memcpy/null_memcpy.c @@ -24,7 +24,7 @@ */ -#include "../../../../fastd.h" +#include "../../../../crypto.h" static fastd_cipher_context_t* null_initialize(fastd_context_t *ctx UNUSED) { diff --git a/src/crypto/cipher/salsa20/nacl/salsa20_nacl.c b/src/crypto/cipher/salsa20/nacl/salsa20_nacl.c index cb78afc..93daad3 100644 --- a/src/crypto/cipher/salsa20/nacl/salsa20_nacl.c +++ b/src/crypto/cipher/salsa20/nacl/salsa20_nacl.c @@ -24,7 +24,7 @@ */ -#include "../../../../fastd.h" +#include "../../../../crypto.h" #include <crypto_stream_salsa20.h> diff --git a/src/crypto/cipher/salsa2012/nacl/salsa2012_nacl.c b/src/crypto/cipher/salsa2012/nacl/salsa2012_nacl.c index edf5843..2703f0e 100644 --- a/src/crypto/cipher/salsa2012/nacl/salsa2012_nacl.c +++ b/src/crypto/cipher/salsa2012/nacl/salsa2012_nacl.c @@ -24,7 +24,7 @@ */ -#include "../../../../fastd.h" +#include "../../../../crypto.h" #include <crypto_stream_salsa2012.h> |