aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/sha2
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-05-13 10:30:03 +0000
committerlloyd <[email protected]>2009-05-13 10:30:03 +0000
commit820df981410c6d7490fc3728a2d52ca1c59dceda (patch)
treef2f5ba8156635dc67382d33684d85ad9c0e6f645 /src/hash/sha2
parent81e1bd8787ba9c2497d4206b76d00aa0974749db (diff)
Many source files included bit_ops.h when what was really desired was
rotate.h, or when it was not needed at all. Remove or change the includes as needed.
Diffstat (limited to 'src/hash/sha2')
-rw-r--r--src/hash/sha2/sha2_32.cpp2
-rw-r--r--src/hash/sha2/sha2_64.cpp2
2 files changed, 2 insertions, 2 deletions
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 {