aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/md5_ia32
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-29 04:01:02 +0000
committerlloyd <[email protected]>2008-09-29 04:01:02 +0000
commit46bfd602ab63ee4b89b6b6283bdc2c6fb102e110 (patch)
treeb365494bb67c126513b417a2b0d609a5d4b9fabd /src/hash/md5_ia32
parent7553b5f1461d58eae49e81c2e9bacdf0ea7d4cab (diff)
Normalize asm names
Diffstat (limited to 'src/hash/md5_ia32')
-rw-r--r--src/hash/md5_ia32/md5.cpp2
-rw-r--r--src/hash/md5_ia32/md5_ia32.S (renamed from src/hash/md5_ia32/md5core.S)6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/hash/md5_ia32/md5.cpp b/src/hash/md5_ia32/md5.cpp
index cfe48e7e9..04e7673c1 100644
--- a/src/hash/md5_ia32/md5.cpp
+++ b/src/hash/md5_ia32/md5.cpp
@@ -8,7 +8,7 @@
namespace Botan {
-extern "C" void md5_core(u32bit[4], const byte[64], u32bit[16]);
+extern "C" void botan_md5_core_asm(u32bit[4], const byte[64], u32bit[16]);
/*************************************************
* MD5 Compression Function *
diff --git a/src/hash/md5_ia32/md5core.S b/src/hash/md5_ia32/md5_ia32.S
index 8ebe469f3..8e1ec2e79 100644
--- a/src/hash/md5_ia32/md5core.S
+++ b/src/hash/md5_ia32/md5_ia32.S
@@ -5,9 +5,9 @@
#include <botan/asm_macr.h>
-START_LISTING(md5core.S)
+START_LISTING(md5_ia32.S)
-START_FUNCTION(md5_core)
+START_FUNCTION(botan_md5_core_asm)
SPILL_REGS()
#define PUSHED 4
@@ -161,4 +161,4 @@ LOOP_UNTIL_EQ(ESI, 16, .LOAD_INPUT)
ADD(ARRAY4(EBP, 3), EDX)
RESTORE_REGS()
-END_FUNCTION(md5_core)
+END_FUNCTION(botan_md5_core_asm)