diff options
Diffstat (limited to 'src/lib/libcrypto/des/asm/des-586.pl')
-rw-r--r-- | src/lib/libcrypto/des/asm/des-586.pl | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/lib/libcrypto/des/asm/des-586.pl b/src/lib/libcrypto/des/asm/des-586.pl index c890766bc9..0d08e8a3a9 100644 --- a/src/lib/libcrypto/des/asm/des-586.pl +++ b/src/lib/libcrypto/des/asm/des-586.pl | |||
@@ -19,21 +19,21 @@ require "desboth.pl"; | |||
19 | $L="edi"; | 19 | $L="edi"; |
20 | $R="esi"; | 20 | $R="esi"; |
21 | 21 | ||
22 | &external_label("des_SPtrans"); | 22 | &external_label("DES_SPtrans"); |
23 | &des_encrypt("des_encrypt1",1); | 23 | &DES_encrypt("DES_encrypt1",1); |
24 | &des_encrypt("des_encrypt2",0); | 24 | &DES_encrypt("DES_encrypt2",0); |
25 | &des_encrypt3("des_encrypt3",1); | 25 | &DES_encrypt3("DES_encrypt3",1); |
26 | &des_encrypt3("des_decrypt3",0); | 26 | &DES_encrypt3("DES_decrypt3",0); |
27 | &cbc("des_ncbc_encrypt","des_encrypt1","des_encrypt1",0,4,5,3,5,-1); | 27 | &cbc("DES_ncbc_encrypt","DES_encrypt1","DES_encrypt1",0,4,5,3,5,-1); |
28 | &cbc("des_ede3_cbc_encrypt","des_encrypt3","des_decrypt3",0,6,7,3,4,5); | 28 | &cbc("DES_ede3_cbc_encrypt","DES_encrypt3","DES_decrypt3",0,6,7,3,4,5); |
29 | 29 | ||
30 | &asm_finish(); | 30 | &asm_finish(); |
31 | 31 | ||
32 | sub des_encrypt | 32 | sub DES_encrypt |
33 | { | 33 | { |
34 | local($name,$do_ip)=@_; | 34 | local($name,$do_ip)=@_; |
35 | 35 | ||
36 | &function_begin_B($name,"EXTRN _des_SPtrans:DWORD"); | 36 | &function_begin_B($name,"EXTRN _DES_SPtrans:DWORD"); |
37 | 37 | ||
38 | &push("esi"); | 38 | &push("esi"); |
39 | &push("edi"); | 39 | &push("edi"); |
@@ -80,11 +80,11 @@ sub des_encrypt | |||
80 | { | 80 | { |
81 | &comment(""); | 81 | &comment(""); |
82 | &comment("Round $i"); | 82 | &comment("Round $i"); |
83 | &D_ENCRYPT($i,$L,$R,$i*2,$ks,"des_SPtrans","eax","ebx","ecx","edx"); | 83 | &D_ENCRYPT($i,$L,$R,$i*2,$ks,"DES_SPtrans","eax","ebx","ecx","edx"); |
84 | 84 | ||
85 | &comment(""); | 85 | &comment(""); |
86 | &comment("Round ".sprintf("%d",$i+1)); | 86 | &comment("Round ".sprintf("%d",$i+1)); |
87 | &D_ENCRYPT($i+1,$R,$L,($i+1)*2,$ks,"des_SPtrans","eax","ebx","ecx","edx"); | 87 | &D_ENCRYPT($i+1,$R,$L,($i+1)*2,$ks,"DES_SPtrans","eax","ebx","ecx","edx"); |
88 | } | 88 | } |
89 | &jmp(&label("end")); | 89 | &jmp(&label("end")); |
90 | 90 | ||
@@ -94,10 +94,10 @@ sub des_encrypt | |||
94 | { | 94 | { |
95 | &comment(""); | 95 | &comment(""); |
96 | &comment("Round $i"); | 96 | &comment("Round $i"); |
97 | &D_ENCRYPT(15-$i,$L,$R,$i*2,$ks,"des_SPtrans","eax","ebx","ecx","edx"); | 97 | &D_ENCRYPT(15-$i,$L,$R,$i*2,$ks,"DES_SPtrans","eax","ebx","ecx","edx"); |
98 | &comment(""); | 98 | &comment(""); |
99 | &comment("Round ".sprintf("%d",$i-1)); | 99 | &comment("Round ".sprintf("%d",$i-1)); |
100 | &D_ENCRYPT(15-$i+1,$R,$L,($i-1)*2,$ks,"des_SPtrans","eax","ebx","ecx","edx"); | 100 | &D_ENCRYPT(15-$i+1,$R,$L,($i-1)*2,$ks,"DES_SPtrans","eax","ebx","ecx","edx"); |
101 | } | 101 | } |
102 | 102 | ||
103 | &set_label("end"); | 103 | &set_label("end"); |