aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/block/cast/cast128.cpp2
-rw-r--r--src/block/cast/cast256.cpp2
-rw-r--r--src/block/kasumi/kasumi.cpp2
-rw-r--r--src/block/mars/mars.cpp2
-rw-r--r--src/block/noekeon/noekeon.cpp2
-rw-r--r--src/block/rc2/rc2.cpp2
-rw-r--r--src/block/rc5/rc5.cpp2
-rw-r--r--src/block/rc6/rc6.cpp2
-rw-r--r--src/block/safer/safer_sk.cpp2
-rw-r--r--src/block/serpent/serpent.cpp2
-rw-r--r--src/block/square/square.cpp2
-rw-r--r--src/block/twofish/twofish.cpp2
-rw-r--r--src/entropy/egd/es_egd.cpp1
-rw-r--r--src/hash/fork256/fork256.cpp2
-rw-r--r--src/hash/gost_3411/gost_3411.cpp2
-rw-r--r--src/hash/has160/has160.cpp2
-rw-r--r--src/hash/md4/md4.cpp2
-rw-r--r--src/hash/md5/md5.cpp2
-rw-r--r--src/hash/rmd128/rmd128.cpp2
-rw-r--r--src/hash/rmd160/rmd160.cpp2
-rw-r--r--src/hash/sha1/sha160.cpp2
-rw-r--r--src/hash/sha2/sha2_32.cpp2
-rw-r--r--src/hash/sha2/sha2_64.cpp2
-rw-r--r--src/rng/hmac_rng/hmac_rng.cpp1
-rw-r--r--src/utils/util.cpp1
25 files changed, 22 insertions, 25 deletions
diff --git a/src/block/cast/cast128.cpp b/src/block/cast/cast128.cpp
index fdb9428a6..046638ab9 100644
--- a/src/block/cast/cast128.cpp
+++ b/src/block/cast/cast128.cpp
@@ -7,7 +7,7 @@
#include <botan/cast128.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/rotate.h>
namespace Botan {
diff --git a/src/block/cast/cast256.cpp b/src/block/cast/cast256.cpp
index 993bab46c..22ff876fa 100644
--- a/src/block/cast/cast256.cpp
+++ b/src/block/cast/cast256.cpp
@@ -7,7 +7,7 @@
#include <botan/cast256.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/rotate.h>
namespace Botan {
diff --git a/src/block/kasumi/kasumi.cpp b/src/block/kasumi/kasumi.cpp
index 3887271a9..e051ddefb 100644
--- a/src/block/kasumi/kasumi.cpp
+++ b/src/block/kasumi/kasumi.cpp
@@ -7,7 +7,7 @@
#include <botan/kasumi.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/rotate.h>
namespace Botan {
diff --git a/src/block/mars/mars.cpp b/src/block/mars/mars.cpp
index 7c3906ecf..08c8409c5 100644
--- a/src/block/mars/mars.cpp
+++ b/src/block/mars/mars.cpp
@@ -7,7 +7,7 @@
#include <botan/mars.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/rotate.h>
namespace Botan {
diff --git a/src/block/noekeon/noekeon.cpp b/src/block/noekeon/noekeon.cpp
index 256744b22..90eb9ad2b 100644
--- a/src/block/noekeon/noekeon.cpp
+++ b/src/block/noekeon/noekeon.cpp
@@ -7,7 +7,7 @@
#include <botan/noekeon.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/rotate.h>
namespace Botan {
diff --git a/src/block/rc2/rc2.cpp b/src/block/rc2/rc2.cpp
index bf588bbf3..5827bdb68 100644
--- a/src/block/rc2/rc2.cpp
+++ b/src/block/rc2/rc2.cpp
@@ -7,7 +7,7 @@
#include <botan/rc2.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/rotate.h>
namespace Botan {
diff --git a/src/block/rc5/rc5.cpp b/src/block/rc5/rc5.cpp
index 57219f413..5d83d5a4e 100644
--- a/src/block/rc5/rc5.cpp
+++ b/src/block/rc5/rc5.cpp
@@ -7,7 +7,7 @@
#include <botan/rc5.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/rotate.h>
#include <botan/parsing.h>
#include <algorithm>
diff --git a/src/block/rc6/rc6.cpp b/src/block/rc6/rc6.cpp
index f83819614..3b30ea93a 100644
--- a/src/block/rc6/rc6.cpp
+++ b/src/block/rc6/rc6.cpp
@@ -7,7 +7,7 @@
#include <botan/rc6.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/rotate.h>
#include <algorithm>
namespace Botan {
diff --git a/src/block/safer/safer_sk.cpp b/src/block/safer/safer_sk.cpp
index b774c91b4..f72c4773b 100644
--- a/src/block/safer/safer_sk.cpp
+++ b/src/block/safer/safer_sk.cpp
@@ -6,7 +6,7 @@
*/
#include <botan/safer_sk.h>
-#include <botan/bit_ops.h>
+#include <botan/rotate.h>
#include <botan/parsing.h>
#include <botan/rotate.h>
diff --git a/src/block/serpent/serpent.cpp b/src/block/serpent/serpent.cpp
index 0c4589510..df7592fea 100644
--- a/src/block/serpent/serpent.cpp
+++ b/src/block/serpent/serpent.cpp
@@ -7,7 +7,7 @@
#include <botan/serpent.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/rotate.h>
namespace Botan {
diff --git a/src/block/square/square.cpp b/src/block/square/square.cpp
index 5aaef6ee4..cb226542d 100644
--- a/src/block/square/square.cpp
+++ b/src/block/square/square.cpp
@@ -7,7 +7,7 @@
#include <botan/square.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/rotate.h>
namespace Botan {
diff --git a/src/block/twofish/twofish.cpp b/src/block/twofish/twofish.cpp
index edc476d15..9784b00a2 100644
--- a/src/block/twofish/twofish.cpp
+++ b/src/block/twofish/twofish.cpp
@@ -7,7 +7,7 @@
#include <botan/twofish.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/rotate.h>
namespace Botan {
diff --git a/src/entropy/egd/es_egd.cpp b/src/entropy/egd/es_egd.cpp
index ced3f004d..a2e3d3791 100644
--- a/src/entropy/egd/es_egd.cpp
+++ b/src/entropy/egd/es_egd.cpp
@@ -6,7 +6,6 @@
*/
#include <botan/es_egd.h>
-#include <botan/bit_ops.h>
#include <botan/parsing.h>
#include <botan/exceptn.h>
#include <cstring>
diff --git a/src/hash/fork256/fork256.cpp b/src/hash/fork256/fork256.cpp
index 070c7cf6c..f80bff43a 100644
--- a/src/hash/fork256/fork256.cpp
+++ b/src/hash/fork256/fork256.cpp
@@ -7,7 +7,7 @@
#include <botan/fork256.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/rotate.h>
namespace Botan {
diff --git a/src/hash/gost_3411/gost_3411.cpp b/src/hash/gost_3411/gost_3411.cpp
index ae96b2467..3c7f5f92b 100644
--- a/src/hash/gost_3411/gost_3411.cpp
+++ b/src/hash/gost_3411/gost_3411.cpp
@@ -5,7 +5,7 @@
#include <botan/gost_3411.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/rotate.h>
#include <botan/xor_buf.h>
namespace Botan {
diff --git a/src/hash/has160/has160.cpp b/src/hash/has160/has160.cpp
index 4441b0b43..9a505d31d 100644
--- a/src/hash/has160/has160.cpp
+++ b/src/hash/has160/has160.cpp
@@ -7,7 +7,7 @@
#include <botan/has160.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/rotate.h>
namespace Botan {
diff --git a/src/hash/md4/md4.cpp b/src/hash/md4/md4.cpp
index c0b52faa4..39e3c8c41 100644
--- a/src/hash/md4/md4.cpp
+++ b/src/hash/md4/md4.cpp
@@ -7,7 +7,7 @@
#include <botan/md4.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/rotate.h>
namespace Botan {
diff --git a/src/hash/md5/md5.cpp b/src/hash/md5/md5.cpp
index a5c614330..7c280aab7 100644
--- a/src/hash/md5/md5.cpp
+++ b/src/hash/md5/md5.cpp
@@ -7,7 +7,7 @@
#include <botan/md5.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/rotate.h>
namespace Botan {
diff --git a/src/hash/rmd128/rmd128.cpp b/src/hash/rmd128/rmd128.cpp
index b6d0a4590..8b2c0ccf8 100644
--- a/src/hash/rmd128/rmd128.cpp
+++ b/src/hash/rmd128/rmd128.cpp
@@ -7,7 +7,7 @@
#include <botan/rmd128.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/rotate.h>
namespace Botan {
diff --git a/src/hash/rmd160/rmd160.cpp b/src/hash/rmd160/rmd160.cpp
index 3efbe674a..863de8487 100644
--- a/src/hash/rmd160/rmd160.cpp
+++ b/src/hash/rmd160/rmd160.cpp
@@ -7,7 +7,7 @@
#include <botan/rmd160.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/rotate.h>
namespace Botan {
diff --git a/src/hash/sha1/sha160.cpp b/src/hash/sha1/sha160.cpp
index 58a800c9f..45323a11b 100644
--- a/src/hash/sha1/sha160.cpp
+++ b/src/hash/sha1/sha160.cpp
@@ -7,7 +7,7 @@
#include <botan/sha160.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/rotate.h>
namespace Botan {
diff --git a/src/hash/sha2/sha2_32.cpp b/src/hash/sha2/sha2_32.cpp
index 7c3114daf..9da2ec23f 100644
--- a/src/hash/sha2/sha2_32.cpp
+++ b/src/hash/sha2/sha2_32.cpp
@@ -8,7 +8,7 @@
#include <botan/sha2_32.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/rotate.h>
namespace Botan {
diff --git a/src/hash/sha2/sha2_64.cpp b/src/hash/sha2/sha2_64.cpp
index dbbfc5a96..e9b4c2e5a 100644
--- a/src/hash/sha2/sha2_64.cpp
+++ b/src/hash/sha2/sha2_64.cpp
@@ -7,7 +7,7 @@
#include <botan/sha2_64.h>
#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
+#include <botan/rotate.h>
namespace Botan {
diff --git a/src/rng/hmac_rng/hmac_rng.cpp b/src/rng/hmac_rng/hmac_rng.cpp
index 2f152bf4d..757f59037 100644
--- a/src/rng/hmac_rng/hmac_rng.cpp
+++ b/src/rng/hmac_rng/hmac_rng.cpp
@@ -9,7 +9,6 @@
#include <botan/loadstor.h>
#include <botan/xor_buf.h>
#include <botan/util.h>
-#include <botan/bit_ops.h>
#include <botan/stl_util.h>
#include <algorithm>
diff --git a/src/utils/util.cpp b/src/utils/util.cpp
index e6e281bd1..84dfd1a14 100644
--- a/src/utils/util.cpp
+++ b/src/utils/util.cpp
@@ -6,7 +6,6 @@
*/
#include <botan/util.h>
-#include <botan/bit_ops.h>
#include <algorithm>
#include <cmath>