Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Prev Previous commit
deps: update archs files for quictls/openssl-3.0.4
After an OpenSSL source update, all the config files need to be
regenerated and committed by:
    $ make -C deps/openssl/config
    $ git add deps/openssl/config/archs
    $ git add deps/openssl/openssl
    $ git commit
  • Loading branch information
RafaelGSS committed Jul 5, 2022
commit 15ca0dc941dce7b564dad8878328ad997d30c1ca
3 changes: 2 additions & 1 deletion deps/openssl/config/archs/BSD-x86/asm/configdata.pm
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ our %config = (
"CPPDEFINES" => [],
"CPPFLAGS" => [],
"CPPINCLUDES" => [],
"CXX" => "ccache g++",
"CXXFLAGS" => [],
"FIPSKEY" => "f4556650ac31d35461610bac4ed81b1a181b2d8a43ea2854cbae22ca74560813",
"HASHBANGPERL" => "/usr/bin/env perl",
Expand Down Expand Up @@ -228,7 +229,7 @@ our %config = (
"CPPFLAGS" => undef,
"CPPINCLUDES" => undef,
"CROSS_COMPILE" => undef,
"CXX" => undef,
"CXX" => "ccache g++",
"CXXFLAGS" => undef,
"HASHBANGPERL" => undef,
"LD" => undef,
Expand Down
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