Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 24 additions & 24 deletions deps/openssl/config/archs/BSD-x86/asm/crypto/aes/aes-586.S
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
.type __x86_AES_encrypt_compact,@function
.align 4
__x86_AES_encrypt_compact:
%ifdef __CET__
#ifdef __CET__

.byte 243,15,30,251
%endif
#endif

movl %edi,20(%esp)
xorl (%edi),%eax
Expand Down Expand Up @@ -265,10 +265,10 @@ L000loop:
.type __sse_AES_encrypt_compact,@function
.align 4
__sse_AES_encrypt_compact:
%ifdef __CET__
#ifdef __CET__

.byte 243,15,30,251
%endif
#endif

pxor (%edi),%mm0
pxor 8(%edi),%mm4
Expand Down Expand Up @@ -426,10 +426,10 @@ L002out:
.type __x86_AES_encrypt,@function
.align 4
__x86_AES_encrypt:
%ifdef __CET__
#ifdef __CET__

.byte 243,15,30,251
%endif
#endif

movl %edi,20(%esp)
xorl (%edi),%eax
Expand Down Expand Up @@ -980,10 +980,10 @@ LAES_Te:
.align 4
_AES_encrypt:
L_AES_encrypt_begin:
%ifdef __CET__
#ifdef __CET__

.byte 243,15,30,251
%endif
#endif

pushl %ebp
pushl %ebx
Expand Down Expand Up @@ -1048,10 +1048,10 @@ L005x86:
.type __x86_AES_decrypt_compact,@function
.align 4
__x86_AES_decrypt_compact:
%ifdef __CET__
#ifdef __CET__

.byte 243,15,30,251
%endif
#endif

movl %edi,20(%esp)
xorl (%edi),%eax
Expand Down Expand Up @@ -1407,10 +1407,10 @@ L006loop:
.type __sse_AES_decrypt_compact,@function
.align 4
__sse_AES_decrypt_compact:
%ifdef __CET__
#ifdef __CET__

.byte 243,15,30,251
%endif
#endif

pxor (%edi),%mm0
pxor 8(%edi),%mm4
Expand Down Expand Up @@ -1627,10 +1627,10 @@ L008out:
.type __x86_AES_decrypt,@function
.align 4
__x86_AES_decrypt:
%ifdef __CET__
#ifdef __CET__

.byte 243,15,30,251
%endif
#endif

movl %edi,20(%esp)
xorl (%edi),%eax
Expand Down Expand Up @@ -2185,10 +2185,10 @@ LAES_Td:
.align 4
_AES_decrypt:
L_AES_decrypt_begin:
%ifdef __CET__
#ifdef __CET__

.byte 243,15,30,251
%endif
#endif

pushl %ebp
pushl %ebx
Expand Down Expand Up @@ -2255,10 +2255,10 @@ L011x86:
.align 4
_AES_cbc_encrypt:
L_AES_cbc_encrypt_begin:
%ifdef __CET__
#ifdef __CET__

.byte 243,15,30,251
%endif
#endif

pushl %ebp
pushl %ebx
Expand Down Expand Up @@ -2791,10 +2791,10 @@ L039slow_dec_partial_x86:
.type __x86_AES_set_encrypt_key,@function
.align 4
__x86_AES_set_encrypt_key:
%ifdef __CET__
#ifdef __CET__

.byte 243,15,30,251
%endif
#endif

pushl %ebp
pushl %ebx
Expand Down Expand Up @@ -3027,10 +3027,10 @@ L045exit:
.align 4
_AES_set_encrypt_key:
L_AES_set_encrypt_key_begin:
%ifdef __CET__
#ifdef __CET__

.byte 243,15,30,251
%endif
#endif

call __x86_AES_set_encrypt_key
ret
Expand All @@ -3039,10 +3039,10 @@ L_AES_set_encrypt_key_begin:
.align 4
_AES_set_decrypt_key:
L_AES_set_decrypt_key_begin:
%ifdef __CET__
#ifdef __CET__

.byte 243,15,30,251
%endif
#endif

call __x86_AES_set_encrypt_key
cmpl $0,%eax
Expand Down
Loading