aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/aes.cpp1
-rw-r--r--src/arc4.cpp2
-rw-r--r--src/buf_es.cpp2
-rw-r--r--src/cbc.cpp2
-rw-r--r--src/cbc_mac.cpp2
-rw-r--r--src/cfb.cpp2
-rw-r--r--src/cmac.cpp2
-rw-r--r--src/ctr.cpp2
-rw-r--r--src/cts.cpp2
-rw-r--r--src/des.cpp2
-rw-r--r--src/dlies.cpp2
-rw-r--r--src/eax.cpp2
-rw-r--r--src/hmac.cpp2
-rw-r--r--src/lion.cpp2
-rw-r--r--src/lubyrack.cpp2
-rw-r--r--src/md2.cpp2
-rw-r--r--src/mgf1.cpp2
-rw-r--r--src/ofb.cpp2
-rw-r--r--src/pkcs5.cpp2
-rw-r--r--src/randpool.cpp2
-rw-r--r--src/safer_sk.cpp1
-rw-r--r--src/symkey.cpp2
-rw-r--r--src/turing.cpp2
-rw-r--r--src/wid_wake.cpp2
-rw-r--r--src/x919_mac.cpp2
-rw-r--r--src/x931_rng.cpp2
26 files changed, 25 insertions, 25 deletions
diff --git a/src/aes.cpp b/src/aes.cpp
index 18a3afbf1..24f1f6213 100644
--- a/src/aes.cpp
+++ b/src/aes.cpp
@@ -5,7 +5,6 @@
#include <botan/aes.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
namespace Botan {
diff --git a/src/arc4.cpp b/src/arc4.cpp
index f317239c0..238567cdc 100644
--- a/src/arc4.cpp
+++ b/src/arc4.cpp
@@ -4,7 +4,7 @@
*************************************************/
#include <botan/arc4.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
#include <botan/parsing.h>
namespace Botan {
diff --git a/src/buf_es.cpp b/src/buf_es.cpp
index 9f7be3e9b..19f30e22c 100644
--- a/src/buf_es.cpp
+++ b/src/buf_es.cpp
@@ -4,7 +4,7 @@
*************************************************/
#include <botan/buf_es.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
#include <botan/util.h>
#include <algorithm>
diff --git a/src/cbc.cpp b/src/cbc.cpp
index 5561aa0e0..9ad598bed 100644
--- a/src/cbc.cpp
+++ b/src/cbc.cpp
@@ -5,7 +5,7 @@
#include <botan/cbc.h>
#include <botan/lookup.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
#include <algorithm>
namespace Botan {
diff --git a/src/cbc_mac.cpp b/src/cbc_mac.cpp
index 0f403b9b3..d5275b0ed 100644
--- a/src/cbc_mac.cpp
+++ b/src/cbc_mac.cpp
@@ -5,7 +5,7 @@
#include <botan/cbc_mac.h>
#include <botan/lookup.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
#include <algorithm>
namespace Botan {
diff --git a/src/cfb.cpp b/src/cfb.cpp
index 357dce6f7..dbfbff6ae 100644
--- a/src/cfb.cpp
+++ b/src/cfb.cpp
@@ -6,7 +6,7 @@
#include <botan/cfb.h>
#include <botan/lookup.h>
#include <botan/parsing.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
#include <algorithm>
namespace Botan {
diff --git a/src/cmac.cpp b/src/cmac.cpp
index 5e0b56db5..210fa6768 100644
--- a/src/cmac.cpp
+++ b/src/cmac.cpp
@@ -5,7 +5,7 @@
#include <botan/cmac.h>
#include <botan/lookup.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
namespace Botan {
diff --git a/src/ctr.cpp b/src/ctr.cpp
index e30d07d24..8b8c5f35f 100644
--- a/src/ctr.cpp
+++ b/src/ctr.cpp
@@ -5,7 +5,7 @@
#include <botan/ctr.h>
#include <botan/lookup.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
#include <algorithm>
namespace Botan {
diff --git a/src/cts.cpp b/src/cts.cpp
index 56ea8f06c..8af775713 100644
--- a/src/cts.cpp
+++ b/src/cts.cpp
@@ -5,7 +5,7 @@
#include <botan/cts.h>
#include <botan/lookup.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
#include <algorithm>
namespace Botan {
diff --git a/src/des.cpp b/src/des.cpp
index feb5df037..d09752854 100644
--- a/src/des.cpp
+++ b/src/des.cpp
@@ -5,7 +5,7 @@
#include <botan/des.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
namespace Botan {
diff --git a/src/dlies.cpp b/src/dlies.cpp
index 22e606403..2a2f33925 100644
--- a/src/dlies.cpp
+++ b/src/dlies.cpp
@@ -6,7 +6,7 @@
#include <botan/dlies.h>
#include <botan/lookup.h>
#include <botan/look_pk.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
#include <memory>
namespace Botan {
diff --git a/src/eax.cpp b/src/eax.cpp
index f244f0290..c5ae5e9fa 100644
--- a/src/eax.cpp
+++ b/src/eax.cpp
@@ -5,7 +5,7 @@
#include <botan/eax.h>
#include <botan/lookup.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
#include <botan/parsing.h>
#include <algorithm>
diff --git a/src/hmac.cpp b/src/hmac.cpp
index 5604145f4..b8c76e8f6 100644
--- a/src/hmac.cpp
+++ b/src/hmac.cpp
@@ -6,7 +6,7 @@
#include <botan/hmac.h>
#include <botan/lookup.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
namespace Botan {
diff --git a/src/lion.cpp b/src/lion.cpp
index 65b8560ae..009e98408 100644
--- a/src/lion.cpp
+++ b/src/lion.cpp
@@ -5,7 +5,7 @@
#include <botan/lion.h>
#include <botan/lookup.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
#include <botan/parsing.h>
namespace Botan {
diff --git a/src/lubyrack.cpp b/src/lubyrack.cpp
index 66a7ba2bd..4a5408e1d 100644
--- a/src/lubyrack.cpp
+++ b/src/lubyrack.cpp
@@ -5,7 +5,7 @@
#include <botan/lubyrack.h>
#include <botan/lookup.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
namespace Botan {
diff --git a/src/md2.cpp b/src/md2.cpp
index ff7d5436c..c609eda10 100644
--- a/src/md2.cpp
+++ b/src/md2.cpp
@@ -4,7 +4,7 @@
*************************************************/
#include <botan/md2.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
namespace Botan {
diff --git a/src/mgf1.cpp b/src/mgf1.cpp
index c6f30eee9..70f5a50a0 100644
--- a/src/mgf1.cpp
+++ b/src/mgf1.cpp
@@ -6,7 +6,7 @@
#include <botan/mgf1.h>
#include <botan/lookup.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
#include <algorithm>
#include <memory>
diff --git a/src/ofb.cpp b/src/ofb.cpp
index 568bd02fa..db254d329 100644
--- a/src/ofb.cpp
+++ b/src/ofb.cpp
@@ -5,7 +5,7 @@
#include <botan/ofb.h>
#include <botan/lookup.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
#include <algorithm>
namespace Botan {
diff --git a/src/pkcs5.cpp b/src/pkcs5.cpp
index 77d8c9200..8a6e7b5a8 100644
--- a/src/pkcs5.cpp
+++ b/src/pkcs5.cpp
@@ -6,7 +6,7 @@
#include <botan/pkcs5.h>
#include <botan/lookup.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
#include <botan/hmac.h>
#include <algorithm>
#include <memory>
diff --git a/src/randpool.cpp b/src/randpool.cpp
index 24086c984..69ef3b9e7 100644
--- a/src/randpool.cpp
+++ b/src/randpool.cpp
@@ -6,7 +6,7 @@
#include <botan/randpool.h>
#include <botan/lookup.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
#include <botan/util.h>
#include <botan/stl_util.h>
#include <algorithm>
diff --git a/src/safer_sk.cpp b/src/safer_sk.cpp
index c861cfdda..639130714 100644
--- a/src/safer_sk.cpp
+++ b/src/safer_sk.cpp
@@ -6,6 +6,7 @@
#include <botan/safer_sk.h>
#include <botan/bit_ops.h>
#include <botan/parsing.h>
+#include <botan/rotate.h>
namespace Botan {
diff --git a/src/symkey.cpp b/src/symkey.cpp
index f07421bef..7cc1bce64 100644
--- a/src/symkey.cpp
+++ b/src/symkey.cpp
@@ -4,7 +4,7 @@
*************************************************/
#include <botan/symkey.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
#include <botan/rng.h>
#include <botan/pipe.h>
#include <botan/hex.h>
diff --git a/src/turing.cpp b/src/turing.cpp
index 53881d9a5..017b5cf1d 100644
--- a/src/turing.cpp
+++ b/src/turing.cpp
@@ -5,7 +5,7 @@
#include <botan/turing.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
namespace Botan {
diff --git a/src/wid_wake.cpp b/src/wid_wake.cpp
index 7e69cf457..d7ebdece0 100644
--- a/src/wid_wake.cpp
+++ b/src/wid_wake.cpp
@@ -5,7 +5,7 @@
#include <botan/wid_wake.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
namespace Botan {
diff --git a/src/x919_mac.cpp b/src/x919_mac.cpp
index b9c6fd2c5..92ec7b7b8 100644
--- a/src/x919_mac.cpp
+++ b/src/x919_mac.cpp
@@ -5,7 +5,7 @@
#include <botan/x919_mac.h>
#include <botan/lookup.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
#include <algorithm>
namespace Botan {
diff --git a/src/x931_rng.cpp b/src/x931_rng.cpp
index 8f454dcb8..f4b0f71a9 100644
--- a/src/x931_rng.cpp
+++ b/src/x931_rng.cpp
@@ -5,7 +5,7 @@
#include <botan/x931_rng.h>
#include <botan/lookup.h>
-#include <botan/bit_ops.h>
+#include <botan/xor_buf.h>
#include <algorithm>
namespace Botan {