summaryrefslogtreecommitdiffstats
path: root/src/crypto/cipher
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2013-11-25 21:30:36 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2013-11-25 21:30:36 +0100
commit60c2c11de820687887a643344fc1b0a91fd45226 (patch)
tree5dde7180b5d28ed21af2528a74ecf8e0193c626b /src/crypto/cipher
parentc58ad422281f6d6f747aa31177cdc93ae63b4f64 (diff)
downloadfastd-60c2c11de820687887a643344fc1b0a91fd45226.tar
fastd-60c2c11de820687887a643344fc1b0a91fd45226.zip
Move cipher and mac structures to a new header
Diffstat (limited to 'src/crypto/cipher')
-rw-r--r--src/crypto/cipher/aes128_ctr/nacl/cipher_aes128_ctr_nacl.c2
-rw-r--r--src/crypto/cipher/blowfish_ctr/builtin/blowfish_ctr.c2
-rw-r--r--src/crypto/cipher/ciphers.c.in2
-rw-r--r--src/crypto/cipher/null/memcpy/null_memcpy.c2
-rw-r--r--src/crypto/cipher/salsa20/nacl/salsa20_nacl.c2
-rw-r--r--src/crypto/cipher/salsa2012/nacl/salsa2012_nacl.c2
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>