summaryrefslogtreecommitdiffstats
path: root/crypto/des/asm/crypt586.pl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-03-04 16:08:13 +0000
committerRichard Levitte <levitte@openssl.org>2002-03-04 16:08:13 +0000
commit3bac6d947949153efdb0c0864743dbcfdbec5ab9 (patch)
tree0b68e88da360ca82bccfc11aa8593b8b4fe2adf0 /crypto/des/asm/crypt586.pl
parent5c5143de487d4dfee6037f376a863f847b30af87 (diff)
Rename des_SPtrans to DES_SPtrans to differentiate from libdes and avoid certain linkage clashes.
Diffstat (limited to 'crypto/des/asm/crypt586.pl')
-rw-r--r--crypto/des/asm/crypt586.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/des/asm/crypt586.pl b/crypto/des/asm/crypt586.pl
index 197c413ea6..3d41d82f69 100644
--- a/crypto/des/asm/crypt586.pl
+++ b/crypto/des/asm/crypt586.pl
@@ -14,7 +14,7 @@ require "x86asm.pl";
$L="edi";
$R="esi";
-&external_label("des_SPtrans");
+&external_label("DES_SPtrans");
&fcrypt_body("fcrypt_body");
&asm_finish();
@@ -22,7 +22,7 @@ sub fcrypt_body
{
local($name,$do_ip)=@_;
- &function_begin($name,"EXTRN _des_SPtrans:DWORD");
+ &function_begin($name,"EXTRN _DES_SPtrans:DWORD");
&comment("");
&comment("Load the 2 words");
@@ -39,11 +39,11 @@ sub fcrypt_body
{
&comment("");
&comment("Round $i");
- &D_ENCRYPT($i,$L,$R,$i*2,$ks,"des_SPtrans","eax","ebx","ecx","edx");
+ &D_ENCRYPT($i,$L,$R,$i*2,$ks,"DES_SPtrans","eax","ebx","ecx","edx");
&comment("");
&comment("Round ".sprintf("%d",$i+1));
- &D_ENCRYPT($i+1,$R,$L,($i+1)*2,$ks,"des_SPtrans","eax","ebx","ecx","edx");
+ &D_ENCRYPT($i+1,$R,$L,($i+1)*2,$ks,"DES_SPtrans","eax","ebx","ecx","edx");
}
&mov("ebx", &swtmp(0));
&mov("eax", $L);