aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-07 18:44:11 +0000
committerlloyd <[email protected]>2008-09-07 18:44:11 +0000
commitd21ec372e108efecf704b51bb2080dcacce854d2 (patch)
treeaa67fe642cf9f92b9f36445c47f7198ecb0ba2e1 /modules
parentdceda75e7e5bc22e5c67c4e3d782edfe5ede55c0 (diff)
Fix call to asm
Diffstat (limited to 'modules')
-rw-r--r--modules/asm_ia32/sha160.cpp2
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);
}
/*************************************************