diff options
author | lloyd <[email protected]> | 2009-05-13 10:30:03 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-05-13 10:30:03 +0000 |
commit | 820df981410c6d7490fc3728a2d52ca1c59dceda (patch) | |
tree | f2f5ba8156635dc67382d33684d85ad9c0e6f645 /src/hash | |
parent | 81e1bd8787ba9c2497d4206b76d00aa0974749db (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')
-rw-r--r-- | src/hash/fork256/fork256.cpp | 2 | ||||
-rw-r--r-- | src/hash/gost_3411/gost_3411.cpp | 2 | ||||
-rw-r--r-- | src/hash/has160/has160.cpp | 2 | ||||
-rw-r--r-- | src/hash/md4/md4.cpp | 2 | ||||
-rw-r--r-- | src/hash/md5/md5.cpp | 2 | ||||
-rw-r--r-- | src/hash/rmd128/rmd128.cpp | 2 | ||||
-rw-r--r-- | src/hash/rmd160/rmd160.cpp | 2 | ||||
-rw-r--r-- | src/hash/sha1/sha160.cpp | 2 | ||||
-rw-r--r-- | src/hash/sha2/sha2_32.cpp | 2 | ||||
-rw-r--r-- | src/hash/sha2/sha2_64.cpp | 2 |
10 files changed, 10 insertions, 10 deletions
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 { |