aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/md4_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/md4_ia32
parent7553b5f1461d58eae49e81c2e9bacdf0ea7d4cab (diff)
Normalize asm names
Diffstat (limited to 'src/hash/md4_ia32')
-rw-r--r--src/hash/md4_ia32/md4.cpp2
-rw-r--r--src/hash/md4_ia32/md4_ia32.S (renamed from src/hash/md4_ia32/md4core.S)6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/hash/md4_ia32/md4.cpp b/src/hash/md4_ia32/md4.cpp
index e3dc79012..12466e86e 100644
--- a/src/hash/md4_ia32/md4.cpp
+++ b/src/hash/md4_ia32/md4.cpp
@@ -8,7 +8,7 @@
namespace Botan {
-extern "C" void md4_core(u32bit[4], const byte[64], u32bit[16]);
+extern "C" void botan_md4_core_asm(u32bit[4], const byte[64], u32bit[16]);
/*************************************************
* MD4 Compression Function *
diff --git a/src/hash/md4_ia32/md4core.S b/src/hash/md4_ia32/md4_ia32.S
index 662e9924a..410c540e9 100644
--- a/src/hash/md4_ia32/md4core.S
+++ b/src/hash/md4_ia32/md4_ia32.S
@@ -5,9 +5,9 @@
#include <botan/asm_macr.h>
-START_LISTING(md4core.S)
+START_LISTING(md4_ia32.S)
-START_FUNCTION(md4_core)
+START_FUNCTION(botan_md4_core_asm)
SPILL_REGS()
#define PUSHED 4
@@ -132,4 +132,4 @@ LOOP_UNTIL_EQ(ESI, 16, .LOAD_INPUT)
ADD(ARRAY4(EBP, 3), EDX)
RESTORE_REGS()
-END_FUNCTION(md4_core)
+END_FUNCTION(botan_md4_core_asm)