diff options
Diffstat (limited to 'modules/alg_amd64/sha160.cpp')
-rw-r--r-- | modules/alg_amd64/sha160.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/alg_amd64/sha160.cpp b/modules/alg_amd64/sha160.cpp index 180f050c9..97ec9d522 100644 --- a/modules/alg_amd64/sha160.cpp +++ b/modules/alg_amd64/sha160.cpp @@ -8,14 +8,14 @@ namespace Botan { -extern "C" void sha160_core(u32bit[5], const byte[64], u32bit[80]); +extern "C" void botan_asm_sha160_core(u32bit[5], const byte[64], u32bit[80]); /************************************************* * SHA-160 Compression Function * *************************************************/ void SHA_160::hash(const byte input[]) { - sha160_core(digest, input, W); + botan_asm_sha160_core(digest, input, W); } /************************************************* |