diff options
Diffstat (limited to 'src/hash/has160/has160.cpp')
-rw-r--r-- | src/hash/has160/has160.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/hash/has160/has160.cpp b/src/hash/has160/has160.cpp index ae45418ce..006e8f142 100644 --- a/src/hash/has160/has160.cpp +++ b/src/hash/has160/has160.cpp @@ -6,12 +6,12 @@ */ #include <botan/has160.h> -#include <botan/loadstor.h> -#include <botan/rotate.h> +#include <botan/internal/loadstor.h> +#include <botan/internal/rotate.h> namespace Botan { -namespace { +namespace HAS_160_F { /* * HAS-160 F1 Function @@ -60,6 +60,8 @@ inline void F4(u32bit A, u32bit& B, u32bit C, u32bit D, u32bit& E, */ void HAS_160::compress_n(const byte input[], u32bit blocks) { + using namespace HAS_160_F; + u32bit A = digest[0], B = digest[1], C = digest[2], D = digest[3], E = digest[4]; |