diff options
author | lloyd <[email protected]> | 2008-09-07 18:44:11 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-09-07 18:44:11 +0000 |
commit | d21ec372e108efecf704b51bb2080dcacce854d2 (patch) | |
tree | aa67fe642cf9f92b9f36445c47f7198ecb0ba2e1 /modules | |
parent | dceda75e7e5bc22e5c67c4e3d782edfe5ede55c0 (diff) |
Fix call to asm
Diffstat (limited to 'modules')
-rw-r--r-- | modules/asm_ia32/sha160.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/asm_ia32/sha160.cpp b/modules/asm_ia32/sha160.cpp index 54e85fd26..7725541d5 100644 --- a/modules/asm_ia32/sha160.cpp +++ b/modules/asm_ia32/sha160.cpp @@ -15,7 +15,7 @@ extern "C" void botan_sha160_asm_ia32(u32bit[5], const byte[64], u32bit[81]); *************************************************/ void SHA_160::hash(const byte input[]) { - sha160_core(digest, input, W); + botan_sha160_asm_ia32(digest, input, W); } /************************************************* |