deps: update archs files for OpenSSL-1.1.1i

After an OpenSSL source update, all the config files need to be
regenerated and comitted by:
    $ cd deps/openssl/config
    $ make
    $ git add deps/openssl/config/archs
    $ git add deps/openssl/openssl/include/crypto/bn_conf.h
    $ git add deps/openssl/openssl/include/crypto/dso_conf.h
    $ git add deps/openssl/openssl/include/openssl/opensslconf.h
    $ git commit

PR-URL: https://github.com/nodejs/node/pull/36541
Reviewed-By: Michael Dawson <midawson@redhat.com>
This commit is contained in:
Richard Lau 2020-12-16 14:23:11 +00:00
parent d936e1833f
commit b0608b574a
No known key found for this signature in database
GPG Key ID: C43CEC45C17AB93C
323 changed files with 2938 additions and 1499 deletions

View File

@ -60,9 +60,9 @@ our %config = (
openssl_thread_defines => [ "OPENSSL_THREADS" ],
openssldir => "",
options => " no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-heartbeats no-md2 no-msan no-rc5 no-sctp no-shared no-ssl-trace no-ssl3 no-ssl3-method no-ubsan no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
perl_archname => "x86_64-linux-gnu-thread-multi",
perl_archname => "x86_64-linux-thread-multi",
perl_cmd => "/usr/bin/perl",
perl_version => "5.28.1",
perl_version => "5.32.0",
perlargv => [ "no-comp", "no-shared", "no-afalgeng", "BSD-x86_64" ],
perlenv => {
"AR" => undef,
@ -111,8 +111,8 @@ our %config = (
sourcedir => ".",
target => "BSD-x86_64",
tdirs => [ "ossl_shim" ],
version => "1.1.1g",
version_num => "0x1010107fL",
version => "1.1.1i",
version_num => "0x1010109fL",
);
our %target = (
@ -1182,6 +1182,11 @@ our %unified_info = (
"libssl",
"test/libtestutil.a",
],
"test/cmactest" =>
[
"libcrypto.a",
"test/libtestutil.a",
],
"test/cmsapitest" =>
[
"libcrypto",
@ -9085,6 +9090,11 @@ our %unified_info = (
[
"include",
],
"test/cmactest.o" =>
[
"include",
"apps/include",
],
"test/cmsapitest.o" =>
[
"include",
@ -9662,6 +9672,7 @@ our %unified_info = (
"test/cipherlist_test",
"test/ciphername_test",
"test/clienthellotest",
"test/cmactest",
"test/cmsapitest",
"test/conf_include_test",
"test/constant_time_test",
@ -14437,6 +14448,14 @@ our %unified_info = (
[
"test/clienthellotest.c",
],
"test/cmactest" =>
[
"test/cmactest.o",
],
"test/cmactest.o" =>
[
"test/cmactest.c",
],
"test/cmsapitest" =>
[
"test/cmsapitest.o",

View File

@ -5,7 +5,7 @@
.type aesni_cbc_sha1_enc,@function
.align 32
aesni_cbc_sha1_enc:
.cfi_startproc
.cfi_startproc
movl OPENSSL_ia32cap_P+0(%rip),%r10d
movq OPENSSL_ia32cap_P+4(%rip),%r11
@ -18,7 +18,7 @@ aesni_cbc_sha1_enc:
je aesni_cbc_sha1_enc_avx
jmp aesni_cbc_sha1_enc_ssse3
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size aesni_cbc_sha1_enc,.-aesni_cbc_sha1_enc
.type aesni_cbc_sha1_enc_ssse3,@function
.align 32
@ -2732,7 +2732,7 @@ K_XX_XX:
.type aesni_cbc_sha1_enc_shaext,@function
.align 32
aesni_cbc_sha1_enc_shaext:
.cfi_startproc
.cfi_startproc
movq 8(%rsp),%r10
movdqu (%r9),%xmm8
movd 16(%r9),%xmm9
@ -3031,5 +3031,5 @@ aesni_cbc_sha1_enc_shaext:
movdqu %xmm8,(%r9)
movd %xmm9,16(%r9)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size aesni_cbc_sha1_enc_shaext,.-aesni_cbc_sha1_enc_shaext

View File

@ -5,7 +5,7 @@
.type aesni_cbc_sha256_enc,@function
.align 16
aesni_cbc_sha256_enc:
.cfi_startproc
.cfi_startproc
leaq OPENSSL_ia32cap_P(%rip),%r11
movl $1,%eax
cmpq $0,%rdi
@ -31,7 +31,7 @@ aesni_cbc_sha256_enc:
ud2
.Lprobe:
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size aesni_cbc_sha256_enc,.-aesni_cbc_sha256_enc
.align 64
@ -4081,7 +4081,7 @@ aesni_cbc_sha256_enc_avx2:
.type aesni_cbc_sha256_enc_shaext,@function
.align 32
aesni_cbc_sha256_enc_shaext:
.cfi_startproc
.cfi_startproc
movq 8(%rsp),%r10
leaq K256+128(%rip),%rax
movdqu (%r9),%xmm1
@ -4431,5 +4431,5 @@ aesni_cbc_sha256_enc_shaext:
movdqu %xmm1,(%r9)
movdqu %xmm2,16(%r9)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size aesni_cbc_sha256_enc_shaext,.-aesni_cbc_sha256_enc_shaext

View File

@ -861,7 +861,7 @@ aesni_ecb_encrypt:
.type aesni_ccm64_encrypt_blocks,@function
.align 16
aesni_ccm64_encrypt_blocks:
.cfi_startproc
.cfi_startproc
movl 240(%rcx),%eax
movdqu (%r8),%xmm6
movdqa .Lincrement64(%rip),%xmm9
@ -920,13 +920,13 @@ aesni_ccm64_encrypt_blocks:
pxor %xmm8,%xmm8
pxor %xmm6,%xmm6
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size aesni_ccm64_encrypt_blocks,.-aesni_ccm64_encrypt_blocks
.globl aesni_ccm64_decrypt_blocks
.type aesni_ccm64_decrypt_blocks,@function
.align 16
aesni_ccm64_decrypt_blocks:
.cfi_startproc
.cfi_startproc
movl 240(%rcx),%eax
movups (%r8),%xmm6
movdqu (%r9),%xmm3
@ -1019,7 +1019,7 @@ aesni_ccm64_decrypt_blocks:
pxor %xmm8,%xmm8
pxor %xmm6,%xmm6
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size aesni_ccm64_decrypt_blocks,.-aesni_ccm64_decrypt_blocks
.globl aesni_ctr32_encrypt_blocks
.type aesni_ctr32_encrypt_blocks,@function
@ -2794,7 +2794,7 @@ aesni_ocb_encrypt:
.type __ocb_encrypt6,@function
.align 32
__ocb_encrypt6:
.cfi_startproc
.cfi_startproc
pxor %xmm9,%xmm15
movdqu (%rbx,%r12,1),%xmm11
movdqa %xmm10,%xmm12
@ -2892,13 +2892,13 @@ __ocb_encrypt6:
.byte 102,65,15,56,221,246
.byte 102,65,15,56,221,255
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __ocb_encrypt6,.-__ocb_encrypt6
.type __ocb_encrypt4,@function
.align 32
__ocb_encrypt4:
.cfi_startproc
.cfi_startproc
pxor %xmm9,%xmm15
movdqu (%rbx,%r12,1),%xmm11
movdqa %xmm10,%xmm12
@ -2963,13 +2963,13 @@ __ocb_encrypt4:
.byte 102,65,15,56,221,228
.byte 102,65,15,56,221,237
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __ocb_encrypt4,.-__ocb_encrypt4
.type __ocb_encrypt1,@function
.align 32
__ocb_encrypt1:
.cfi_startproc
.cfi_startproc
pxor %xmm15,%xmm7
pxor %xmm9,%xmm7
pxor %xmm2,%xmm8
@ -3000,7 +3000,7 @@ __ocb_encrypt1:
.byte 102,15,56,221,215
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __ocb_encrypt1,.-__ocb_encrypt1
.globl aesni_ocb_decrypt
@ -3243,7 +3243,7 @@ aesni_ocb_decrypt:
.type __ocb_decrypt6,@function
.align 32
__ocb_decrypt6:
.cfi_startproc
.cfi_startproc
pxor %xmm9,%xmm15
movdqu (%rbx,%r12,1),%xmm11
movdqa %xmm10,%xmm12
@ -3335,13 +3335,13 @@ __ocb_decrypt6:
.byte 102,65,15,56,223,246
.byte 102,65,15,56,223,255
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __ocb_decrypt6,.-__ocb_decrypt6
.type __ocb_decrypt4,@function
.align 32
__ocb_decrypt4:
.cfi_startproc
.cfi_startproc
pxor %xmm9,%xmm15
movdqu (%rbx,%r12,1),%xmm11
movdqa %xmm10,%xmm12
@ -3402,13 +3402,13 @@ __ocb_decrypt4:
.byte 102,65,15,56,223,228
.byte 102,65,15,56,223,237
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __ocb_decrypt4,.-__ocb_decrypt4
.type __ocb_decrypt1,@function
.align 32
__ocb_decrypt1:
.cfi_startproc
.cfi_startproc
pxor %xmm15,%xmm7
pxor %xmm9,%xmm7
pxor %xmm7,%xmm2
@ -3438,7 +3438,7 @@ __ocb_decrypt1:
.byte 102,15,56,223,215
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __ocb_decrypt1,.-__ocb_decrypt1
.globl aesni_cbc_encrypt
.type aesni_cbc_encrypt,@function
@ -4447,7 +4447,7 @@ __aesni_set_encrypt_key:
shufps $170,%xmm1,%xmm1
xorps %xmm1,%xmm2
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size aesni_set_encrypt_key,.-aesni_set_encrypt_key
.size __aesni_set_encrypt_key,.-__aesni_set_encrypt_key
.align 64

View File

@ -1453,7 +1453,7 @@ rsaz_512_mul_by_one:
.type __rsaz_512_reduce,@function
.align 32
__rsaz_512_reduce:
.cfi_startproc
.cfi_startproc
movq %r8,%rbx
imulq 128+8(%rsp),%rbx
movq 0(%rbp),%rax
@ -1533,12 +1533,12 @@ __rsaz_512_reduce:
jne .Lreduction_loop
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __rsaz_512_reduce,.-__rsaz_512_reduce
.type __rsaz_512_reducex,@function
.align 32
__rsaz_512_reducex:
.cfi_startproc
.cfi_startproc
imulq %r8,%rdx
xorq %rsi,%rsi
@ -1591,12 +1591,12 @@ __rsaz_512_reducex:
jne .Lreduction_loopx
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __rsaz_512_reducex,.-__rsaz_512_reducex
.type __rsaz_512_subtract,@function
.align 32
__rsaz_512_subtract:
.cfi_startproc
.cfi_startproc
movq %r8,(%rdi)
movq %r9,8(%rdi)
movq %r10,16(%rdi)
@ -1650,12 +1650,12 @@ __rsaz_512_subtract:
movq %r15,56(%rdi)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __rsaz_512_subtract,.-__rsaz_512_subtract
.type __rsaz_512_mul,@function
.align 32
__rsaz_512_mul:
.cfi_startproc
.cfi_startproc
leaq 8(%rsp),%rdi
movq (%rsi),%rax
@ -1794,12 +1794,12 @@ __rsaz_512_mul:
movq %r15,56(%rdi)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __rsaz_512_mul,.-__rsaz_512_mul
.type __rsaz_512_mulx,@function
.align 32
__rsaz_512_mulx:
.cfi_startproc
.cfi_startproc
mulxq (%rsi),%rbx,%r8
movq $-6,%rcx
@ -1916,13 +1916,13 @@ __rsaz_512_mulx:
movq %r15,8+64+56(%rsp)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __rsaz_512_mulx,.-__rsaz_512_mulx
.globl rsaz_512_scatter4
.type rsaz_512_scatter4,@function
.align 16
rsaz_512_scatter4:
.cfi_startproc
.cfi_startproc
leaq (%rdi,%rdx,8),%rdi
movl $8,%r9d
jmp .Loop_scatter
@ -1935,14 +1935,14 @@ rsaz_512_scatter4:
decl %r9d
jnz .Loop_scatter
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size rsaz_512_scatter4,.-rsaz_512_scatter4
.globl rsaz_512_gather4
.type rsaz_512_gather4,@function
.align 16
rsaz_512_gather4:
.cfi_startproc
.cfi_startproc
movd %edx,%xmm8
movdqa .Linc+16(%rip),%xmm1
movdqa .Linc(%rip),%xmm0
@ -2006,7 +2006,7 @@ rsaz_512_gather4:
jnz .Loop_gather
.byte 0xf3,0xc3
.LSEH_end_rsaz_512_gather4:
.cfi_endproc
.cfi_endproc
.size rsaz_512_gather4,.-rsaz_512_gather4
.align 64

View File

@ -550,7 +550,7 @@ bn_mul4x_mont_gather5:
.type mul4x_internal,@function
.align 32
mul4x_internal:
.cfi_startproc
.cfi_startproc
shlq $5,%r9
movd 8(%rax),%xmm5
leaq .Linc(%rip),%rax
@ -1072,7 +1072,7 @@ mul4x_internal:
movq 16(%rbp),%r14
movq 24(%rbp),%r15
jmp .Lsqr4x_sub_entry
.cfi_endproc
.cfi_endproc
.size mul4x_internal,.-mul4x_internal
.globl bn_power5
.type bn_power5,@function
@ -1215,7 +1215,7 @@ bn_power5:
.align 32
bn_sqr8x_internal:
__bn_sqr8x_internal:
.cfi_startproc
.cfi_startproc
@ -1990,12 +1990,12 @@ __bn_sqr8x_reduction:
cmpq %rdx,%rdi
jb .L8x_reduction_loop
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size bn_sqr8x_internal,.-bn_sqr8x_internal
.type __bn_post4x_internal,@function
.align 32
__bn_post4x_internal:
.cfi_startproc
.cfi_startproc
movq 0(%rbp),%r12
leaq (%rdi,%r9,1),%rbx
movq %r9,%rcx
@ -2046,18 +2046,18 @@ __bn_post4x_internal:
movq %r9,%r10
negq %r9
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __bn_post4x_internal,.-__bn_post4x_internal
.globl bn_from_montgomery
.type bn_from_montgomery,@function
.align 32
bn_from_montgomery:
.cfi_startproc
.cfi_startproc
testl $7,%r9d
jz bn_from_mont8x
xorl %eax,%eax
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size bn_from_montgomery,.-bn_from_montgomery
.type bn_from_mont8x,@function
@ -2341,7 +2341,7 @@ bn_mulx4x_mont_gather5:
.type mulx4x_internal,@function
.align 32
mulx4x_internal:
.cfi_startproc
.cfi_startproc
movq %r9,8(%rsp)
movq %r9,%r10
negq %r9
@ -2760,7 +2760,7 @@ mulx4x_internal:
movq 16(%rbp),%r14
movq 24(%rbp),%r15
jmp .Lsqrx4x_sub_entry
.cfi_endproc
.cfi_endproc
.size mulx4x_internal,.-mulx4x_internal
.type bn_powerx5,@function
.align 32
@ -3519,7 +3519,7 @@ __bn_sqrx8x_reduction:
.size bn_sqrx8x_internal,.-bn_sqrx8x_internal
.align 32
__bn_postx4x_internal:
.cfi_startproc
.cfi_startproc
movq 0(%rbp),%r12
movq %rcx,%r10
movq %rcx,%r9
@ -3567,13 +3567,13 @@ __bn_postx4x_internal:
negq %r9
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __bn_postx4x_internal,.-__bn_postx4x_internal
.globl bn_get_bits5
.type bn_get_bits5,@function
.align 16
bn_get_bits5:
.cfi_startproc
.cfi_startproc
leaq 0(%rdi),%r10
leaq 1(%rdi),%r11
movl %esi,%ecx
@ -3587,14 +3587,14 @@ bn_get_bits5:
shrl %cl,%eax
andl $31,%eax
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size bn_get_bits5,.-bn_get_bits5
.globl bn_scatter5
.type bn_scatter5,@function
.align 16
bn_scatter5:
.cfi_startproc
.cfi_startproc
cmpl $0,%esi
jz .Lscatter_epilogue
leaq (%rdx,%rcx,8),%rdx
@ -3607,7 +3607,7 @@ bn_scatter5:
jnz .Lscatter
.Lscatter_epilogue:
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size bn_scatter5,.-bn_scatter5
.globl bn_gather5
@ -3615,7 +3615,7 @@ bn_scatter5:
.align 32
bn_gather5:
.LSEH_begin_bn_gather5:
.cfi_startproc
.cfi_startproc
.byte 0x4c,0x8d,0x14,0x24
.byte 0x48,0x81,0xec,0x08,0x01,0x00,0x00
@ -3773,7 +3773,7 @@ bn_gather5:
leaq (%r10),%rsp
.byte 0xf3,0xc3
.LSEH_end_bn_gather5:
.cfi_endproc
.cfi_endproc
.size bn_gather5,.-bn_gather5
.align 64
.Linc:

View File

@ -11,7 +11,7 @@
*/
#define PLATFORM "platform: BSD-x86_64"
#define DATE "built on: Tue Apr 21 23:16:52 2020 UTC"
#define DATE "built on: Wed Dec 16 14:12:47 2020 UTC"
/*
* Generate compiler_flags as an array of individual characters. This is a

View File

@ -5,13 +5,13 @@
.type Camellia_EncryptBlock,@function
.align 16
Camellia_EncryptBlock:
.cfi_startproc
.cfi_startproc
movl $128,%eax
subl %edi,%eax
movl $3,%edi
adcl $0,%edi
jmp .Lenc_rounds
.cfi_endproc
.cfi_endproc
.size Camellia_EncryptBlock,.-Camellia_EncryptBlock
.globl Camellia_EncryptBlock_Rounds
@ -85,7 +85,7 @@ Camellia_EncryptBlock_Rounds:
.type _x86_64_Camellia_encrypt,@function
.align 16
_x86_64_Camellia_encrypt:
.cfi_startproc
.cfi_startproc
xorl 0(%r14),%r9d
xorl 4(%r14),%r8d
xorl 8(%r14),%r11d
@ -288,7 +288,7 @@ _x86_64_Camellia_encrypt:
movl %edx,%r11d
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size _x86_64_Camellia_encrypt,.-_x86_64_Camellia_encrypt
@ -296,13 +296,13 @@ _x86_64_Camellia_encrypt:
.type Camellia_DecryptBlock,@function
.align 16
Camellia_DecryptBlock:
.cfi_startproc
.cfi_startproc
movl $128,%eax
subl %edi,%eax
movl $3,%edi
adcl $0,%edi
jmp .Ldec_rounds
.cfi_endproc
.cfi_endproc
.size Camellia_DecryptBlock,.-Camellia_DecryptBlock
.globl Camellia_DecryptBlock_Rounds
@ -376,7 +376,7 @@ Camellia_DecryptBlock_Rounds:
.type _x86_64_Camellia_decrypt,@function
.align 16
_x86_64_Camellia_decrypt:
.cfi_startproc
.cfi_startproc
xorl 0(%r14),%r9d
xorl 4(%r14),%r8d
xorl 8(%r14),%r11d
@ -580,7 +580,7 @@ _x86_64_Camellia_decrypt:
movl %ebx,%r11d
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size _x86_64_Camellia_decrypt,.-_x86_64_Camellia_decrypt
.globl Camellia_Ekeygen
.type Camellia_Ekeygen,@function

View File

@ -3874,12 +3874,12 @@ ecp_nistz256_ord_sqr_montx:
.type ecp_nistz256_to_mont,@function
.align 32
ecp_nistz256_to_mont:
.cfi_startproc
.cfi_startproc
movl $0x80100,%ecx
andl OPENSSL_ia32cap_P+8(%rip),%ecx
leaq .LRR(%rip),%rdx
jmp .Lmul_mont
.cfi_endproc
.cfi_endproc
.size ecp_nistz256_to_mont,.-ecp_nistz256_to_mont
@ -4823,7 +4823,7 @@ ecp_nistz256_from_mont:
.type ecp_nistz256_scatter_w5,@function
.align 32
ecp_nistz256_scatter_w5:
.cfi_startproc
.cfi_startproc
leal -3(%rdx,%rdx,2),%edx
movdqa 0(%rsi),%xmm0
shll $5,%edx
@ -4840,7 +4840,7 @@ ecp_nistz256_scatter_w5:
movdqa %xmm5,80(%rdi,%rdx,1)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size ecp_nistz256_scatter_w5,.-ecp_nistz256_scatter_w5
@ -4914,7 +4914,7 @@ ecp_nistz256_gather_w5:
.type ecp_nistz256_scatter_w7,@function
.align 32
ecp_nistz256_scatter_w7:
.cfi_startproc
.cfi_startproc
movdqu 0(%rsi),%xmm0
shll $6,%edx
movdqu 16(%rsi),%xmm1
@ -4926,7 +4926,7 @@ ecp_nistz256_scatter_w7:
movdqa %xmm3,48(%rdi,%rdx,1)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size ecp_nistz256_scatter_w7,.-ecp_nistz256_scatter_w7

View File

@ -400,14 +400,14 @@ x25519_fe51_mul121666:
.type x25519_fe64_eligible,@function
.align 32
x25519_fe64_eligible:
.cfi_startproc
.cfi_startproc
movl OPENSSL_ia32cap_P+8(%rip),%ecx
xorl %eax,%eax
andl $0x80100,%ecx
cmpl $0x80100,%ecx
cmovel %ecx,%eax
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size x25519_fe64_eligible,.-x25519_fe64_eligible
.globl x25519_fe64_mul
@ -650,7 +650,7 @@ x25519_fe64_sqr:
.align 32
x25519_fe64_mul121666:
.Lfe64_mul121666_body:
.cfi_startproc
.cfi_startproc
movl $121666,%edx
mulxq 0(%rsi),%r8,%rcx
mulxq 8(%rsi),%r9,%rax
@ -679,7 +679,7 @@ x25519_fe64_mul121666:
.Lfe64_mul121666_epilogue:
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size x25519_fe64_mul121666,.-x25519_fe64_mul121666
.globl x25519_fe64_add
@ -687,7 +687,7 @@ x25519_fe64_mul121666:
.align 32
x25519_fe64_add:
.Lfe64_add_body:
.cfi_startproc
.cfi_startproc
movq 0(%rsi),%r8
movq 8(%rsi),%r9
movq 16(%rsi),%r10
@ -716,7 +716,7 @@ x25519_fe64_add:
.Lfe64_add_epilogue:
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size x25519_fe64_add,.-x25519_fe64_add
.globl x25519_fe64_sub
@ -724,7 +724,7 @@ x25519_fe64_add:
.align 32
x25519_fe64_sub:
.Lfe64_sub_body:
.cfi_startproc
.cfi_startproc
movq 0(%rsi),%r8
movq 8(%rsi),%r9
movq 16(%rsi),%r10
@ -753,7 +753,7 @@ x25519_fe64_sub:
.Lfe64_sub_epilogue:
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size x25519_fe64_sub,.-x25519_fe64_sub
.globl x25519_fe64_tobytes
@ -761,7 +761,7 @@ x25519_fe64_sub:
.align 32
x25519_fe64_tobytes:
.Lfe64_to_body:
.cfi_startproc
.cfi_startproc
movq 0(%rsi),%r8
movq 8(%rsi),%r9
movq 16(%rsi),%r10
@ -797,6 +797,6 @@ x25519_fe64_tobytes:
.Lfe64_to_epilogue:
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size x25519_fe64_tobytes,.-x25519_fe64_tobytes
.byte 88,50,53,53,49,57,32,112,114,105,109,105,116,105,118,101,115,32,102,111,114,32,120,56,54,95,54,52,44,32,67,82,89,80,84,79,71,65,77,83,32,98,121,32,60,97,112,112,114,111,64,111,112,101,110,115,115,108,46,111,114,103,62,0

View File

@ -3,7 +3,7 @@
.type _aesni_ctr32_ghash_6x,@function
.align 32
_aesni_ctr32_ghash_6x:
.cfi_startproc
.cfi_startproc
vmovdqu 32(%r11),%xmm2
subq $6,%rdx
vpxor %xmm4,%xmm4,%xmm4
@ -311,7 +311,7 @@ _aesni_ctr32_ghash_6x:
vpxor %xmm4,%xmm8,%xmm8
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size _aesni_ctr32_ghash_6x,.-_aesni_ctr32_ghash_6x
.globl aesni_gcm_decrypt
.type aesni_gcm_decrypt,@function
@ -418,7 +418,7 @@ aesni_gcm_decrypt:
.type _aesni_ctr32_6x,@function
.align 32
_aesni_ctr32_6x:
.cfi_startproc
.cfi_startproc
vmovdqu 0-128(%rcx),%xmm4
vmovdqu 32(%r11),%xmm2
leaq -1(%rbp),%r13
@ -505,7 +505,7 @@ _aesni_ctr32_6x:
vpshufb %xmm0,%xmm1,%xmm1
vpxor %xmm4,%xmm14,%xmm14
jmp .Loop_ctr32
.cfi_endproc
.cfi_endproc
.size _aesni_ctr32_6x,.-_aesni_ctr32_6x
.globl aesni_gcm_encrypt

View File

@ -12,7 +12,7 @@
.type poly1305_init,@function
.align 32
poly1305_init:
.cfi_startproc
.cfi_startproc
xorq %rax,%rax
movq %rax,0(%rdi)
movq %rax,8(%rdi)
@ -48,7 +48,7 @@ poly1305_init:
movl $1,%eax
.Lno_key:
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size poly1305_init,.-poly1305_init
.type poly1305_blocks,@function
@ -169,7 +169,7 @@ poly1305_blocks:
.type poly1305_emit,@function
.align 32
poly1305_emit:
.cfi_startproc
.cfi_startproc
.Lemit:
movq 0(%rdi),%r8
movq 8(%rdi),%r9
@ -190,12 +190,12 @@ poly1305_emit:
movq %rcx,8(%rsi)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size poly1305_emit,.-poly1305_emit
.type __poly1305_block,@function
.align 32
__poly1305_block:
.cfi_startproc
.cfi_startproc
mulq %r14
movq %rax,%r9
movq %r11,%rax
@ -235,13 +235,13 @@ __poly1305_block:
adcq $0,%rbx
adcq $0,%rbp
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __poly1305_block,.-__poly1305_block
.type __poly1305_init_avx,@function
.align 32
__poly1305_init_avx:
.cfi_startproc
.cfi_startproc
movq %r11,%r14
movq %r12,%rbx
xorq %rbp,%rbp
@ -399,7 +399,7 @@ __poly1305_init_avx:
leaq -48-64(%rdi),%rdi
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __poly1305_init_avx,.-__poly1305_init_avx
.type poly1305_blocks_avx,@function
@ -1240,7 +1240,7 @@ poly1305_blocks_avx:
.type poly1305_emit_avx,@function
.align 32
poly1305_emit_avx:
.cfi_startproc
.cfi_startproc
cmpl $0,20(%rdi)
je .Lemit
@ -1291,7 +1291,7 @@ poly1305_emit_avx:
movq %rcx,8(%rsi)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size poly1305_emit_avx,.-poly1305_emit_avx
.type poly1305_blocks_avx2,@function
.align 32
@ -2488,7 +2488,7 @@ poly1305_blocks_avx512:
.type poly1305_init_base2_44,@function
.align 32
poly1305_init_base2_44:
.cfi_startproc
.cfi_startproc
xorq %rax,%rax
movq %rax,0(%rdi)
movq %rax,8(%rdi)
@ -2522,12 +2522,12 @@ poly1305_init_base2_44:
movq %r11,8(%rdx)
movl $1,%eax
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size poly1305_init_base2_44,.-poly1305_init_base2_44
.type poly1305_blocks_vpmadd52,@function
.align 32
poly1305_blocks_vpmadd52:
.cfi_startproc
.cfi_startproc
shrq $4,%rdx
jz .Lno_data_vpmadd52
@ -2634,12 +2634,12 @@ poly1305_blocks_vpmadd52:
.Lno_data_vpmadd52:
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size poly1305_blocks_vpmadd52,.-poly1305_blocks_vpmadd52
.type poly1305_blocks_vpmadd52_4x,@function
.align 32
poly1305_blocks_vpmadd52_4x:
.cfi_startproc
.cfi_startproc
shrq $4,%rdx
jz .Lno_data_vpmadd52_4x
@ -3064,12 +3064,12 @@ poly1305_blocks_vpmadd52_4x:
.Lno_data_vpmadd52_4x:
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size poly1305_blocks_vpmadd52_4x,.-poly1305_blocks_vpmadd52_4x
.type poly1305_blocks_vpmadd52_8x,@function
.align 32
poly1305_blocks_vpmadd52_8x:
.cfi_startproc
.cfi_startproc
shrq $4,%rdx
jz .Lno_data_vpmadd52_8x
@ -3410,12 +3410,12 @@ poly1305_blocks_vpmadd52_8x:
.Lno_data_vpmadd52_8x:
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size poly1305_blocks_vpmadd52_8x,.-poly1305_blocks_vpmadd52_8x
.type poly1305_emit_base2_44,@function
.align 32
poly1305_emit_base2_44:
.cfi_startproc
.cfi_startproc
movq 0(%rdi),%r8
movq 8(%rdi),%r9
movq 16(%rdi),%r10
@ -3446,7 +3446,7 @@ poly1305_emit_base2_44:
movq %rcx,8(%rsi)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size poly1305_emit_base2_44,.-poly1305_emit_base2_44
.align 64
.Lconst:
@ -3485,7 +3485,7 @@ poly1305_emit_base2_44:
.type xor128_encrypt_n_pad,@function
.align 16
xor128_encrypt_n_pad:
.cfi_startproc
.cfi_startproc
subq %rdx,%rsi
subq %rdx,%rdi
movq %rcx,%r10
@ -3527,14 +3527,14 @@ xor128_encrypt_n_pad:
.Ldone_enc:
movq %rdx,%rax
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size xor128_encrypt_n_pad,.-xor128_encrypt_n_pad
.globl xor128_decrypt_n_pad
.type xor128_decrypt_n_pad,@function
.align 16
xor128_decrypt_n_pad:
.cfi_startproc
.cfi_startproc
subq %rdx,%rsi
subq %rdx,%rdi
movq %rcx,%r10
@ -3580,5 +3580,5 @@ xor128_decrypt_n_pad:
.Ldone_dec:
movq %rdx,%rax
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size xor128_decrypt_n_pad,.-xor128_decrypt_n_pad

View File

@ -5,7 +5,7 @@
.type RC4,@function
.align 16
RC4:
.cfi_startproc
.cfi_startproc
orq %rsi,%rsi
jne .Lentry
.byte 0xf3,0xc3
@ -534,7 +534,7 @@ RC4:
.type RC4_set_key,@function
.align 16
RC4_set_key:
.cfi_startproc
.cfi_startproc
leaq 8(%rdi),%rdi
leaq (%rdx,%rsi,1),%rdx
negq %rsi
@ -601,14 +601,14 @@ RC4_set_key:
movl %eax,-8(%rdi)
movl %eax,-4(%rdi)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size RC4_set_key,.-RC4_set_key
.globl RC4_options
.type RC4_options,@function
.align 16
RC4_options:
.cfi_startproc
.cfi_startproc
leaq .Lopts(%rip),%rax
movl OPENSSL_ia32cap_P(%rip),%edx
btl $20,%edx
@ -621,7 +621,7 @@ RC4_options:
addq $12,%rax
.Ldone:
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.align 64
.Lopts:
.byte 114,99,52,40,56,120,44,105,110,116,41,0

View File

@ -3,7 +3,7 @@
.type __KeccakF1600,@function
.align 32
__KeccakF1600:
.cfi_startproc
.cfi_startproc
movq 60(%rdi),%rax
movq 68(%rdi),%rbx
movq 76(%rdi),%rcx
@ -256,7 +256,7 @@ __KeccakF1600:
leaq -192(%r15),%r15
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __KeccakF1600,.-__KeccakF1600
.type KeccakF1600,@function

View File

@ -1422,7 +1422,7 @@ _shaext_shortcut:
movdqu %xmm0,(%rdi)
movd %xmm1,16(%rdi)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size sha1_block_data_order_shaext,.-sha1_block_data_order_shaext
.type sha1_block_data_order_ssse3,@function
.align 16

View File

@ -1775,7 +1775,7 @@ K256:
.align 64
sha256_block_data_order_shaext:
_shaext_shortcut:
.cfi_startproc
.cfi_startproc
leaq K256+128(%rip),%rcx
movdqu (%rdi),%xmm1
movdqu 16(%rdi),%xmm2
@ -1978,7 +1978,7 @@ _shaext_shortcut:
movdqu %xmm1,(%rdi)
movdqu %xmm2,16(%rdi)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size sha256_block_data_order_shaext,.-sha256_block_data_order_shaext
.type sha256_block_data_order_ssse3,@function
.align 64

View File

@ -12,7 +12,7 @@
.type OPENSSL_atomic_add,@function
.align 16
OPENSSL_atomic_add:
.cfi_startproc
.cfi_startproc
movl (%rdi),%eax
.Lspin: leaq (%rsi,%rax,1),%r8
.byte 0xf0
@ -21,19 +21,19 @@ OPENSSL_atomic_add:
movl %r8d,%eax
.byte 0x48,0x98
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size OPENSSL_atomic_add,.-OPENSSL_atomic_add
.globl OPENSSL_rdtsc
.type OPENSSL_rdtsc,@function
.align 16
OPENSSL_rdtsc:
.cfi_startproc
.cfi_startproc
rdtsc
shlq $32,%rdx
orq %rdx,%rax
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size OPENSSL_rdtsc,.-OPENSSL_rdtsc
.globl OPENSSL_ia32_cpuid
@ -209,7 +209,7 @@ OPENSSL_ia32_cpuid:
.type OPENSSL_cleanse,@function
.align 16
OPENSSL_cleanse:
.cfi_startproc
.cfi_startproc
xorq %rax,%rax
cmpq $15,%rsi
jae .Lot
@ -239,14 +239,14 @@ OPENSSL_cleanse:
cmpq $0,%rsi
jne .Little
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size OPENSSL_cleanse,.-OPENSSL_cleanse
.globl CRYPTO_memcmp
.type CRYPTO_memcmp,@function
.align 16
CRYPTO_memcmp:
.cfi_startproc
.cfi_startproc
xorq %rax,%rax
xorq %r10,%r10
cmpq $0,%rdx
@ -275,13 +275,13 @@ CRYPTO_memcmp:
shrq $63,%rax
.Lno_data:
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size CRYPTO_memcmp,.-CRYPTO_memcmp
.globl OPENSSL_wipe_cpu
.type OPENSSL_wipe_cpu,@function
.align 16
OPENSSL_wipe_cpu:
.cfi_startproc
.cfi_startproc
pxor %xmm0,%xmm0
pxor %xmm1,%xmm1
pxor %xmm2,%xmm2
@ -308,13 +308,13 @@ OPENSSL_wipe_cpu:
xorq %r11,%r11
leaq 8(%rsp),%rax
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size OPENSSL_wipe_cpu,.-OPENSSL_wipe_cpu
.globl OPENSSL_instrument_bus
.type OPENSSL_instrument_bus,@function
.align 16
OPENSSL_instrument_bus:
.cfi_startproc
.cfi_startproc
movq %rdi,%r10
movq %rsi,%rcx
movq %rsi,%r11
@ -341,14 +341,14 @@ OPENSSL_instrument_bus:
movq %r11,%rax
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size OPENSSL_instrument_bus,.-OPENSSL_instrument_bus
.globl OPENSSL_instrument_bus2
.type OPENSSL_instrument_bus2,@function
.align 16
OPENSSL_instrument_bus2:
.cfi_startproc
.cfi_startproc
movq %rdi,%r10
movq %rsi,%rcx
movq %rdx,%r11
@ -391,13 +391,13 @@ OPENSSL_instrument_bus2:
movq 8(%rsp),%rax
subq %rcx,%rax
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size OPENSSL_instrument_bus2,.-OPENSSL_instrument_bus2
.globl OPENSSL_ia32_rdrand_bytes
.type OPENSSL_ia32_rdrand_bytes,@function
.align 16
OPENSSL_ia32_rdrand_bytes:
.cfi_startproc
.cfi_startproc
xorq %rax,%rax
cmpq $0,%rsi
je .Ldone_rdrand_bytes
@ -434,13 +434,13 @@ OPENSSL_ia32_rdrand_bytes:
.Ldone_rdrand_bytes:
xorq %r10,%r10
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size OPENSSL_ia32_rdrand_bytes,.-OPENSSL_ia32_rdrand_bytes
.globl OPENSSL_ia32_rdseed_bytes
.type OPENSSL_ia32_rdseed_bytes,@function
.align 16
OPENSSL_ia32_rdseed_bytes:
.cfi_startproc
.cfi_startproc
xorq %rax,%rax
cmpq $0,%rsi
je .Ldone_rdseed_bytes
@ -477,5 +477,5 @@ OPENSSL_ia32_rdseed_bytes:
.Ldone_rdseed_bytes:
xorq %r10,%r10
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size OPENSSL_ia32_rdseed_bytes,.-OPENSSL_ia32_rdseed_bytes

View File

@ -2,7 +2,7 @@
* WARNING: do not edit!
* Generated by Makefile from include/openssl/opensslconf.h.in
*
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
* Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@ -117,6 +117,11 @@ extern "C" {
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# elif defined(__SUNPRO_C)
# if (__SUNPRO_C >= 0x5130)
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# endif
#endif

View File

@ -60,9 +60,9 @@ our %config = (
openssl_thread_defines => [ "OPENSSL_THREADS" ],
openssldir => "",
options => " no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-heartbeats no-md2 no-msan no-rc5 no-sctp no-shared no-ssl-trace no-ssl3 no-ssl3-method no-ubsan no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
perl_archname => "x86_64-linux-gnu-thread-multi",
perl_archname => "x86_64-linux-thread-multi",
perl_cmd => "/usr/bin/perl",
perl_version => "5.28.1",
perl_version => "5.32.0",
perlargv => [ "no-comp", "no-shared", "no-afalgeng", "BSD-x86_64" ],
perlenv => {
"AR" => undef,
@ -111,8 +111,8 @@ our %config = (
sourcedir => ".",
target => "BSD-x86_64",
tdirs => [ "ossl_shim" ],
version => "1.1.1g",
version_num => "0x1010107fL",
version => "1.1.1i",
version_num => "0x1010109fL",
);
our %target = (
@ -1182,6 +1182,11 @@ our %unified_info = (
"libssl",
"test/libtestutil.a",
],
"test/cmactest" =>
[
"libcrypto.a",
"test/libtestutil.a",
],
"test/cmsapitest" =>
[
"libcrypto",
@ -9085,6 +9090,11 @@ our %unified_info = (
[
"include",
],
"test/cmactest.o" =>
[
"include",
"apps/include",
],
"test/cmsapitest.o" =>
[
"include",
@ -9662,6 +9672,7 @@ our %unified_info = (
"test/cipherlist_test",
"test/ciphername_test",
"test/clienthellotest",
"test/cmactest",
"test/cmsapitest",
"test/conf_include_test",
"test/constant_time_test",
@ -14437,6 +14448,14 @@ our %unified_info = (
[
"test/clienthellotest.c",
],
"test/cmactest" =>
[
"test/cmactest.o",
],
"test/cmactest.o" =>
[
"test/cmactest.c",
],
"test/cmsapitest" =>
[
"test/cmsapitest.o",

View File

@ -5,7 +5,7 @@
.type aesni_cbc_sha1_enc,@function
.align 32
aesni_cbc_sha1_enc:
.cfi_startproc
.cfi_startproc
movl OPENSSL_ia32cap_P+0(%rip),%r10d
movq OPENSSL_ia32cap_P+4(%rip),%r11
@ -18,7 +18,7 @@ aesni_cbc_sha1_enc:
je aesni_cbc_sha1_enc_avx
jmp aesni_cbc_sha1_enc_ssse3
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size aesni_cbc_sha1_enc,.-aesni_cbc_sha1_enc
.type aesni_cbc_sha1_enc_ssse3,@function
.align 32
@ -2732,7 +2732,7 @@ K_XX_XX:
.type aesni_cbc_sha1_enc_shaext,@function
.align 32
aesni_cbc_sha1_enc_shaext:
.cfi_startproc
.cfi_startproc
movq 8(%rsp),%r10
movdqu (%r9),%xmm8
movd 16(%r9),%xmm9
@ -3031,5 +3031,5 @@ aesni_cbc_sha1_enc_shaext:
movdqu %xmm8,(%r9)
movd %xmm9,16(%r9)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size aesni_cbc_sha1_enc_shaext,.-aesni_cbc_sha1_enc_shaext

View File

@ -5,7 +5,7 @@
.type aesni_cbc_sha256_enc,@function
.align 16
aesni_cbc_sha256_enc:
.cfi_startproc
.cfi_startproc
leaq OPENSSL_ia32cap_P(%rip),%r11
movl $1,%eax
cmpq $0,%rdi
@ -31,7 +31,7 @@ aesni_cbc_sha256_enc:
ud2
.Lprobe:
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size aesni_cbc_sha256_enc,.-aesni_cbc_sha256_enc
.align 64
@ -4081,7 +4081,7 @@ aesni_cbc_sha256_enc_avx2:
.type aesni_cbc_sha256_enc_shaext,@function
.align 32
aesni_cbc_sha256_enc_shaext:
.cfi_startproc
.cfi_startproc
movq 8(%rsp),%r10
leaq K256+128(%rip),%rax
movdqu (%r9),%xmm1
@ -4431,5 +4431,5 @@ aesni_cbc_sha256_enc_shaext:
movdqu %xmm1,(%r9)
movdqu %xmm2,16(%r9)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size aesni_cbc_sha256_enc_shaext,.-aesni_cbc_sha256_enc_shaext

View File

@ -861,7 +861,7 @@ aesni_ecb_encrypt:
.type aesni_ccm64_encrypt_blocks,@function
.align 16
aesni_ccm64_encrypt_blocks:
.cfi_startproc
.cfi_startproc
movl 240(%rcx),%eax
movdqu (%r8),%xmm6
movdqa .Lincrement64(%rip),%xmm9
@ -920,13 +920,13 @@ aesni_ccm64_encrypt_blocks:
pxor %xmm8,%xmm8
pxor %xmm6,%xmm6
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size aesni_ccm64_encrypt_blocks,.-aesni_ccm64_encrypt_blocks
.globl aesni_ccm64_decrypt_blocks
.type aesni_ccm64_decrypt_blocks,@function
.align 16
aesni_ccm64_decrypt_blocks:
.cfi_startproc
.cfi_startproc
movl 240(%rcx),%eax
movups (%r8),%xmm6
movdqu (%r9),%xmm3
@ -1019,7 +1019,7 @@ aesni_ccm64_decrypt_blocks:
pxor %xmm8,%xmm8
pxor %xmm6,%xmm6
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size aesni_ccm64_decrypt_blocks,.-aesni_ccm64_decrypt_blocks
.globl aesni_ctr32_encrypt_blocks
.type aesni_ctr32_encrypt_blocks,@function
@ -2794,7 +2794,7 @@ aesni_ocb_encrypt:
.type __ocb_encrypt6,@function
.align 32
__ocb_encrypt6:
.cfi_startproc
.cfi_startproc
pxor %xmm9,%xmm15
movdqu (%rbx,%r12,1),%xmm11
movdqa %xmm10,%xmm12
@ -2892,13 +2892,13 @@ __ocb_encrypt6:
.byte 102,65,15,56,221,246
.byte 102,65,15,56,221,255
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __ocb_encrypt6,.-__ocb_encrypt6
.type __ocb_encrypt4,@function
.align 32
__ocb_encrypt4:
.cfi_startproc
.cfi_startproc
pxor %xmm9,%xmm15
movdqu (%rbx,%r12,1),%xmm11
movdqa %xmm10,%xmm12
@ -2963,13 +2963,13 @@ __ocb_encrypt4:
.byte 102,65,15,56,221,228
.byte 102,65,15,56,221,237
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __ocb_encrypt4,.-__ocb_encrypt4
.type __ocb_encrypt1,@function
.align 32
__ocb_encrypt1:
.cfi_startproc
.cfi_startproc
pxor %xmm15,%xmm7
pxor %xmm9,%xmm7
pxor %xmm2,%xmm8
@ -3000,7 +3000,7 @@ __ocb_encrypt1:
.byte 102,15,56,221,215
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __ocb_encrypt1,.-__ocb_encrypt1
.globl aesni_ocb_decrypt
@ -3243,7 +3243,7 @@ aesni_ocb_decrypt:
.type __ocb_decrypt6,@function
.align 32
__ocb_decrypt6:
.cfi_startproc
.cfi_startproc
pxor %xmm9,%xmm15
movdqu (%rbx,%r12,1),%xmm11
movdqa %xmm10,%xmm12
@ -3335,13 +3335,13 @@ __ocb_decrypt6:
.byte 102,65,15,56,223,246
.byte 102,65,15,56,223,255
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __ocb_decrypt6,.-__ocb_decrypt6
.type __ocb_decrypt4,@function
.align 32
__ocb_decrypt4:
.cfi_startproc
.cfi_startproc
pxor %xmm9,%xmm15
movdqu (%rbx,%r12,1),%xmm11
movdqa %xmm10,%xmm12
@ -3402,13 +3402,13 @@ __ocb_decrypt4:
.byte 102,65,15,56,223,228
.byte 102,65,15,56,223,237
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __ocb_decrypt4,.-__ocb_decrypt4
.type __ocb_decrypt1,@function
.align 32
__ocb_decrypt1:
.cfi_startproc
.cfi_startproc
pxor %xmm15,%xmm7
pxor %xmm9,%xmm7
pxor %xmm7,%xmm2
@ -3438,7 +3438,7 @@ __ocb_decrypt1:
.byte 102,15,56,223,215
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __ocb_decrypt1,.-__ocb_decrypt1
.globl aesni_cbc_encrypt
.type aesni_cbc_encrypt,@function
@ -4447,7 +4447,7 @@ __aesni_set_encrypt_key:
shufps $170,%xmm1,%xmm1
xorps %xmm1,%xmm2
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size aesni_set_encrypt_key,.-aesni_set_encrypt_key
.size __aesni_set_encrypt_key,.-__aesni_set_encrypt_key
.align 64

View File

@ -1453,7 +1453,7 @@ rsaz_512_mul_by_one:
.type __rsaz_512_reduce,@function
.align 32
__rsaz_512_reduce:
.cfi_startproc
.cfi_startproc
movq %r8,%rbx
imulq 128+8(%rsp),%rbx
movq 0(%rbp),%rax
@ -1533,12 +1533,12 @@ __rsaz_512_reduce:
jne .Lreduction_loop
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __rsaz_512_reduce,.-__rsaz_512_reduce
.type __rsaz_512_reducex,@function
.align 32
__rsaz_512_reducex:
.cfi_startproc
.cfi_startproc
imulq %r8,%rdx
xorq %rsi,%rsi
@ -1591,12 +1591,12 @@ __rsaz_512_reducex:
jne .Lreduction_loopx
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __rsaz_512_reducex,.-__rsaz_512_reducex
.type __rsaz_512_subtract,@function
.align 32
__rsaz_512_subtract:
.cfi_startproc
.cfi_startproc
movq %r8,(%rdi)
movq %r9,8(%rdi)
movq %r10,16(%rdi)
@ -1650,12 +1650,12 @@ __rsaz_512_subtract:
movq %r15,56(%rdi)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __rsaz_512_subtract,.-__rsaz_512_subtract
.type __rsaz_512_mul,@function
.align 32
__rsaz_512_mul:
.cfi_startproc
.cfi_startproc
leaq 8(%rsp),%rdi
movq (%rsi),%rax
@ -1794,12 +1794,12 @@ __rsaz_512_mul:
movq %r15,56(%rdi)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __rsaz_512_mul,.-__rsaz_512_mul
.type __rsaz_512_mulx,@function
.align 32
__rsaz_512_mulx:
.cfi_startproc
.cfi_startproc
mulxq (%rsi),%rbx,%r8
movq $-6,%rcx
@ -1916,13 +1916,13 @@ __rsaz_512_mulx:
movq %r15,8+64+56(%rsp)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __rsaz_512_mulx,.-__rsaz_512_mulx
.globl rsaz_512_scatter4
.type rsaz_512_scatter4,@function
.align 16
rsaz_512_scatter4:
.cfi_startproc
.cfi_startproc
leaq (%rdi,%rdx,8),%rdi
movl $8,%r9d
jmp .Loop_scatter
@ -1935,14 +1935,14 @@ rsaz_512_scatter4:
decl %r9d
jnz .Loop_scatter
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size rsaz_512_scatter4,.-rsaz_512_scatter4
.globl rsaz_512_gather4
.type rsaz_512_gather4,@function
.align 16
rsaz_512_gather4:
.cfi_startproc
.cfi_startproc
movd %edx,%xmm8
movdqa .Linc+16(%rip),%xmm1
movdqa .Linc(%rip),%xmm0
@ -2006,7 +2006,7 @@ rsaz_512_gather4:
jnz .Loop_gather
.byte 0xf3,0xc3
.LSEH_end_rsaz_512_gather4:
.cfi_endproc
.cfi_endproc
.size rsaz_512_gather4,.-rsaz_512_gather4
.align 64

View File

@ -550,7 +550,7 @@ bn_mul4x_mont_gather5:
.type mul4x_internal,@function
.align 32
mul4x_internal:
.cfi_startproc
.cfi_startproc
shlq $5,%r9
movd 8(%rax),%xmm5
leaq .Linc(%rip),%rax
@ -1072,7 +1072,7 @@ mul4x_internal:
movq 16(%rbp),%r14
movq 24(%rbp),%r15
jmp .Lsqr4x_sub_entry
.cfi_endproc
.cfi_endproc
.size mul4x_internal,.-mul4x_internal
.globl bn_power5
.type bn_power5,@function
@ -1215,7 +1215,7 @@ bn_power5:
.align 32
bn_sqr8x_internal:
__bn_sqr8x_internal:
.cfi_startproc
.cfi_startproc
@ -1990,12 +1990,12 @@ __bn_sqr8x_reduction:
cmpq %rdx,%rdi
jb .L8x_reduction_loop
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size bn_sqr8x_internal,.-bn_sqr8x_internal
.type __bn_post4x_internal,@function
.align 32
__bn_post4x_internal:
.cfi_startproc
.cfi_startproc
movq 0(%rbp),%r12
leaq (%rdi,%r9,1),%rbx
movq %r9,%rcx
@ -2046,18 +2046,18 @@ __bn_post4x_internal:
movq %r9,%r10
negq %r9
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __bn_post4x_internal,.-__bn_post4x_internal
.globl bn_from_montgomery
.type bn_from_montgomery,@function
.align 32
bn_from_montgomery:
.cfi_startproc
.cfi_startproc
testl $7,%r9d
jz bn_from_mont8x
xorl %eax,%eax
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size bn_from_montgomery,.-bn_from_montgomery
.type bn_from_mont8x,@function
@ -2341,7 +2341,7 @@ bn_mulx4x_mont_gather5:
.type mulx4x_internal,@function
.align 32
mulx4x_internal:
.cfi_startproc
.cfi_startproc
movq %r9,8(%rsp)
movq %r9,%r10
negq %r9
@ -2760,7 +2760,7 @@ mulx4x_internal:
movq 16(%rbp),%r14
movq 24(%rbp),%r15
jmp .Lsqrx4x_sub_entry
.cfi_endproc
.cfi_endproc
.size mulx4x_internal,.-mulx4x_internal
.type bn_powerx5,@function
.align 32
@ -3519,7 +3519,7 @@ __bn_sqrx8x_reduction:
.size bn_sqrx8x_internal,.-bn_sqrx8x_internal
.align 32
__bn_postx4x_internal:
.cfi_startproc
.cfi_startproc
movq 0(%rbp),%r12
movq %rcx,%r10
movq %rcx,%r9
@ -3567,13 +3567,13 @@ __bn_postx4x_internal:
negq %r9
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __bn_postx4x_internal,.-__bn_postx4x_internal
.globl bn_get_bits5
.type bn_get_bits5,@function
.align 16
bn_get_bits5:
.cfi_startproc
.cfi_startproc
leaq 0(%rdi),%r10
leaq 1(%rdi),%r11
movl %esi,%ecx
@ -3587,14 +3587,14 @@ bn_get_bits5:
shrl %cl,%eax
andl $31,%eax
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size bn_get_bits5,.-bn_get_bits5
.globl bn_scatter5
.type bn_scatter5,@function
.align 16
bn_scatter5:
.cfi_startproc
.cfi_startproc
cmpl $0,%esi
jz .Lscatter_epilogue
leaq (%rdx,%rcx,8),%rdx
@ -3607,7 +3607,7 @@ bn_scatter5:
jnz .Lscatter
.Lscatter_epilogue:
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size bn_scatter5,.-bn_scatter5
.globl bn_gather5
@ -3615,7 +3615,7 @@ bn_scatter5:
.align 32
bn_gather5:
.LSEH_begin_bn_gather5:
.cfi_startproc
.cfi_startproc
.byte 0x4c,0x8d,0x14,0x24
.byte 0x48,0x81,0xec,0x08,0x01,0x00,0x00
@ -3773,7 +3773,7 @@ bn_gather5:
leaq (%r10),%rsp
.byte 0xf3,0xc3
.LSEH_end_bn_gather5:
.cfi_endproc
.cfi_endproc
.size bn_gather5,.-bn_gather5
.align 64
.Linc:

View File

@ -11,7 +11,7 @@
*/
#define PLATFORM "platform: BSD-x86_64"
#define DATE "built on: Tue Apr 21 23:17:02 2020 UTC"
#define DATE "built on: Wed Dec 16 14:12:56 2020 UTC"
/*
* Generate compiler_flags as an array of individual characters. This is a

View File

@ -5,13 +5,13 @@
.type Camellia_EncryptBlock,@function
.align 16
Camellia_EncryptBlock:
.cfi_startproc
.cfi_startproc
movl $128,%eax
subl %edi,%eax
movl $3,%edi
adcl $0,%edi
jmp .Lenc_rounds
.cfi_endproc
.cfi_endproc
.size Camellia_EncryptBlock,.-Camellia_EncryptBlock
.globl Camellia_EncryptBlock_Rounds
@ -85,7 +85,7 @@ Camellia_EncryptBlock_Rounds:
.type _x86_64_Camellia_encrypt,@function
.align 16
_x86_64_Camellia_encrypt:
.cfi_startproc
.cfi_startproc
xorl 0(%r14),%r9d
xorl 4(%r14),%r8d
xorl 8(%r14),%r11d
@ -288,7 +288,7 @@ _x86_64_Camellia_encrypt:
movl %edx,%r11d
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size _x86_64_Camellia_encrypt,.-_x86_64_Camellia_encrypt
@ -296,13 +296,13 @@ _x86_64_Camellia_encrypt:
.type Camellia_DecryptBlock,@function
.align 16
Camellia_DecryptBlock:
.cfi_startproc
.cfi_startproc
movl $128,%eax
subl %edi,%eax
movl $3,%edi
adcl $0,%edi
jmp .Ldec_rounds
.cfi_endproc
.cfi_endproc
.size Camellia_DecryptBlock,.-Camellia_DecryptBlock
.globl Camellia_DecryptBlock_Rounds
@ -376,7 +376,7 @@ Camellia_DecryptBlock_Rounds:
.type _x86_64_Camellia_decrypt,@function
.align 16
_x86_64_Camellia_decrypt:
.cfi_startproc
.cfi_startproc
xorl 0(%r14),%r9d
xorl 4(%r14),%r8d
xorl 8(%r14),%r11d
@ -580,7 +580,7 @@ _x86_64_Camellia_decrypt:
movl %ebx,%r11d
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size _x86_64_Camellia_decrypt,.-_x86_64_Camellia_decrypt
.globl Camellia_Ekeygen
.type Camellia_Ekeygen,@function

View File

@ -3874,12 +3874,12 @@ ecp_nistz256_ord_sqr_montx:
.type ecp_nistz256_to_mont,@function
.align 32
ecp_nistz256_to_mont:
.cfi_startproc
.cfi_startproc
movl $0x80100,%ecx
andl OPENSSL_ia32cap_P+8(%rip),%ecx
leaq .LRR(%rip),%rdx
jmp .Lmul_mont
.cfi_endproc
.cfi_endproc
.size ecp_nistz256_to_mont,.-ecp_nistz256_to_mont
@ -4823,7 +4823,7 @@ ecp_nistz256_from_mont:
.type ecp_nistz256_scatter_w5,@function
.align 32
ecp_nistz256_scatter_w5:
.cfi_startproc
.cfi_startproc
leal -3(%rdx,%rdx,2),%edx
movdqa 0(%rsi),%xmm0
shll $5,%edx
@ -4840,7 +4840,7 @@ ecp_nistz256_scatter_w5:
movdqa %xmm5,80(%rdi,%rdx,1)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size ecp_nistz256_scatter_w5,.-ecp_nistz256_scatter_w5
@ -4914,7 +4914,7 @@ ecp_nistz256_gather_w5:
.type ecp_nistz256_scatter_w7,@function
.align 32
ecp_nistz256_scatter_w7:
.cfi_startproc
.cfi_startproc
movdqu 0(%rsi),%xmm0
shll $6,%edx
movdqu 16(%rsi),%xmm1
@ -4926,7 +4926,7 @@ ecp_nistz256_scatter_w7:
movdqa %xmm3,48(%rdi,%rdx,1)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size ecp_nistz256_scatter_w7,.-ecp_nistz256_scatter_w7

View File

@ -400,14 +400,14 @@ x25519_fe51_mul121666:
.type x25519_fe64_eligible,@function
.align 32
x25519_fe64_eligible:
.cfi_startproc
.cfi_startproc
movl OPENSSL_ia32cap_P+8(%rip),%ecx
xorl %eax,%eax
andl $0x80100,%ecx
cmpl $0x80100,%ecx
cmovel %ecx,%eax
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size x25519_fe64_eligible,.-x25519_fe64_eligible
.globl x25519_fe64_mul
@ -650,7 +650,7 @@ x25519_fe64_sqr:
.align 32
x25519_fe64_mul121666:
.Lfe64_mul121666_body:
.cfi_startproc
.cfi_startproc
movl $121666,%edx
mulxq 0(%rsi),%r8,%rcx
mulxq 8(%rsi),%r9,%rax
@ -679,7 +679,7 @@ x25519_fe64_mul121666:
.Lfe64_mul121666_epilogue:
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size x25519_fe64_mul121666,.-x25519_fe64_mul121666
.globl x25519_fe64_add
@ -687,7 +687,7 @@ x25519_fe64_mul121666:
.align 32
x25519_fe64_add:
.Lfe64_add_body:
.cfi_startproc
.cfi_startproc
movq 0(%rsi),%r8
movq 8(%rsi),%r9
movq 16(%rsi),%r10
@ -716,7 +716,7 @@ x25519_fe64_add:
.Lfe64_add_epilogue:
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size x25519_fe64_add,.-x25519_fe64_add
.globl x25519_fe64_sub
@ -724,7 +724,7 @@ x25519_fe64_add:
.align 32
x25519_fe64_sub:
.Lfe64_sub_body:
.cfi_startproc
.cfi_startproc
movq 0(%rsi),%r8
movq 8(%rsi),%r9
movq 16(%rsi),%r10
@ -753,7 +753,7 @@ x25519_fe64_sub:
.Lfe64_sub_epilogue:
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size x25519_fe64_sub,.-x25519_fe64_sub
.globl x25519_fe64_tobytes
@ -761,7 +761,7 @@ x25519_fe64_sub:
.align 32
x25519_fe64_tobytes:
.Lfe64_to_body:
.cfi_startproc
.cfi_startproc
movq 0(%rsi),%r8
movq 8(%rsi),%r9
movq 16(%rsi),%r10
@ -797,6 +797,6 @@ x25519_fe64_tobytes:
.Lfe64_to_epilogue:
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size x25519_fe64_tobytes,.-x25519_fe64_tobytes
.byte 88,50,53,53,49,57,32,112,114,105,109,105,116,105,118,101,115,32,102,111,114,32,120,56,54,95,54,52,44,32,67,82,89,80,84,79,71,65,77,83,32,98,121,32,60,97,112,112,114,111,64,111,112,101,110,115,115,108,46,111,114,103,62,0

View File

@ -3,7 +3,7 @@
.type _aesni_ctr32_ghash_6x,@function
.align 32
_aesni_ctr32_ghash_6x:
.cfi_startproc
.cfi_startproc
vmovdqu 32(%r11),%xmm2
subq $6,%rdx
vpxor %xmm4,%xmm4,%xmm4
@ -311,7 +311,7 @@ _aesni_ctr32_ghash_6x:
vpxor %xmm4,%xmm8,%xmm8
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size _aesni_ctr32_ghash_6x,.-_aesni_ctr32_ghash_6x
.globl aesni_gcm_decrypt
.type aesni_gcm_decrypt,@function
@ -418,7 +418,7 @@ aesni_gcm_decrypt:
.type _aesni_ctr32_6x,@function
.align 32
_aesni_ctr32_6x:
.cfi_startproc
.cfi_startproc
vmovdqu 0-128(%rcx),%xmm4
vmovdqu 32(%r11),%xmm2
leaq -1(%rbp),%r13
@ -505,7 +505,7 @@ _aesni_ctr32_6x:
vpshufb %xmm0,%xmm1,%xmm1
vpxor %xmm4,%xmm14,%xmm14
jmp .Loop_ctr32
.cfi_endproc
.cfi_endproc
.size _aesni_ctr32_6x,.-_aesni_ctr32_6x
.globl aesni_gcm_encrypt

View File

@ -12,7 +12,7 @@
.type poly1305_init,@function
.align 32
poly1305_init:
.cfi_startproc
.cfi_startproc
xorq %rax,%rax
movq %rax,0(%rdi)
movq %rax,8(%rdi)
@ -43,7 +43,7 @@ poly1305_init:
movl $1,%eax
.Lno_key:
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size poly1305_init,.-poly1305_init
.type poly1305_blocks,@function
@ -164,7 +164,7 @@ poly1305_blocks:
.type poly1305_emit,@function
.align 32
poly1305_emit:
.cfi_startproc
.cfi_startproc
.Lemit:
movq 0(%rdi),%r8
movq 8(%rdi),%r9
@ -185,12 +185,12 @@ poly1305_emit:
movq %rcx,8(%rsi)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size poly1305_emit,.-poly1305_emit
.type __poly1305_block,@function
.align 32
__poly1305_block:
.cfi_startproc
.cfi_startproc
mulq %r14
movq %rax,%r9
movq %r11,%rax
@ -230,13 +230,13 @@ __poly1305_block:
adcq $0,%rbx
adcq $0,%rbp
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __poly1305_block,.-__poly1305_block
.type __poly1305_init_avx,@function
.align 32
__poly1305_init_avx:
.cfi_startproc
.cfi_startproc
movq %r11,%r14
movq %r12,%rbx
xorq %rbp,%rbp
@ -394,7 +394,7 @@ __poly1305_init_avx:
leaq -48-64(%rdi),%rdi
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __poly1305_init_avx,.-__poly1305_init_avx
.type poly1305_blocks_avx,@function
@ -1235,7 +1235,7 @@ poly1305_blocks_avx:
.type poly1305_emit_avx,@function
.align 32
poly1305_emit_avx:
.cfi_startproc
.cfi_startproc
cmpl $0,20(%rdi)
je .Lemit
@ -1286,7 +1286,7 @@ poly1305_emit_avx:
movq %rcx,8(%rsi)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size poly1305_emit_avx,.-poly1305_emit_avx
.type poly1305_blocks_avx2,@function
.align 32
@ -1969,7 +1969,7 @@ poly1305_blocks_avx2:
.type xor128_encrypt_n_pad,@function
.align 16
xor128_encrypt_n_pad:
.cfi_startproc
.cfi_startproc
subq %rdx,%rsi
subq %rdx,%rdi
movq %rcx,%r10
@ -2011,14 +2011,14 @@ xor128_encrypt_n_pad:
.Ldone_enc:
movq %rdx,%rax
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size xor128_encrypt_n_pad,.-xor128_encrypt_n_pad
.globl xor128_decrypt_n_pad
.type xor128_decrypt_n_pad,@function
.align 16
xor128_decrypt_n_pad:
.cfi_startproc
.cfi_startproc
subq %rdx,%rsi
subq %rdx,%rdi
movq %rcx,%r10
@ -2064,5 +2064,5 @@ xor128_decrypt_n_pad:
.Ldone_dec:
movq %rdx,%rax
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size xor128_decrypt_n_pad,.-xor128_decrypt_n_pad

View File

@ -5,7 +5,7 @@
.type RC4,@function
.align 16
RC4:
.cfi_startproc
.cfi_startproc
orq %rsi,%rsi
jne .Lentry
.byte 0xf3,0xc3
@ -534,7 +534,7 @@ RC4:
.type RC4_set_key,@function
.align 16
RC4_set_key:
.cfi_startproc
.cfi_startproc
leaq 8(%rdi),%rdi
leaq (%rdx,%rsi,1),%rdx
negq %rsi
@ -601,14 +601,14 @@ RC4_set_key:
movl %eax,-8(%rdi)
movl %eax,-4(%rdi)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size RC4_set_key,.-RC4_set_key
.globl RC4_options
.type RC4_options,@function
.align 16
RC4_options:
.cfi_startproc
.cfi_startproc
leaq .Lopts(%rip),%rax
movl OPENSSL_ia32cap_P(%rip),%edx
btl $20,%edx
@ -621,7 +621,7 @@ RC4_options:
addq $12,%rax
.Ldone:
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.align 64
.Lopts:
.byte 114,99,52,40,56,120,44,105,110,116,41,0

View File

@ -3,7 +3,7 @@
.type __KeccakF1600,@function
.align 32
__KeccakF1600:
.cfi_startproc
.cfi_startproc
movq 60(%rdi),%rax
movq 68(%rdi),%rbx
movq 76(%rdi),%rcx
@ -256,7 +256,7 @@ __KeccakF1600:
leaq -192(%r15),%r15
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size __KeccakF1600,.-__KeccakF1600
.type KeccakF1600,@function

View File

@ -1422,7 +1422,7 @@ _shaext_shortcut:
movdqu %xmm0,(%rdi)
movd %xmm1,16(%rdi)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size sha1_block_data_order_shaext,.-sha1_block_data_order_shaext
.type sha1_block_data_order_ssse3,@function
.align 16

View File

@ -1775,7 +1775,7 @@ K256:
.align 64
sha256_block_data_order_shaext:
_shaext_shortcut:
.cfi_startproc
.cfi_startproc
leaq K256+128(%rip),%rcx
movdqu (%rdi),%xmm1
movdqu 16(%rdi),%xmm2
@ -1978,7 +1978,7 @@ _shaext_shortcut:
movdqu %xmm1,(%rdi)
movdqu %xmm2,16(%rdi)
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size sha256_block_data_order_shaext,.-sha256_block_data_order_shaext
.type sha256_block_data_order_ssse3,@function
.align 64

View File

@ -12,7 +12,7 @@
.type OPENSSL_atomic_add,@function
.align 16
OPENSSL_atomic_add:
.cfi_startproc
.cfi_startproc
movl (%rdi),%eax
.Lspin: leaq (%rsi,%rax,1),%r8
.byte 0xf0
@ -21,19 +21,19 @@ OPENSSL_atomic_add:
movl %r8d,%eax
.byte 0x48,0x98
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size OPENSSL_atomic_add,.-OPENSSL_atomic_add
.globl OPENSSL_rdtsc
.type OPENSSL_rdtsc,@function
.align 16
OPENSSL_rdtsc:
.cfi_startproc
.cfi_startproc
rdtsc
shlq $32,%rdx
orq %rdx,%rax
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size OPENSSL_rdtsc,.-OPENSSL_rdtsc
.globl OPENSSL_ia32_cpuid
@ -209,7 +209,7 @@ OPENSSL_ia32_cpuid:
.type OPENSSL_cleanse,@function
.align 16
OPENSSL_cleanse:
.cfi_startproc
.cfi_startproc
xorq %rax,%rax
cmpq $15,%rsi
jae .Lot
@ -239,14 +239,14 @@ OPENSSL_cleanse:
cmpq $0,%rsi
jne .Little
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size OPENSSL_cleanse,.-OPENSSL_cleanse
.globl CRYPTO_memcmp
.type CRYPTO_memcmp,@function
.align 16
CRYPTO_memcmp:
.cfi_startproc
.cfi_startproc
xorq %rax,%rax
xorq %r10,%r10
cmpq $0,%rdx
@ -275,13 +275,13 @@ CRYPTO_memcmp:
shrq $63,%rax
.Lno_data:
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size CRYPTO_memcmp,.-CRYPTO_memcmp
.globl OPENSSL_wipe_cpu
.type OPENSSL_wipe_cpu,@function
.align 16
OPENSSL_wipe_cpu:
.cfi_startproc
.cfi_startproc
pxor %xmm0,%xmm0
pxor %xmm1,%xmm1
pxor %xmm2,%xmm2
@ -308,13 +308,13 @@ OPENSSL_wipe_cpu:
xorq %r11,%r11
leaq 8(%rsp),%rax
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size OPENSSL_wipe_cpu,.-OPENSSL_wipe_cpu
.globl OPENSSL_instrument_bus
.type OPENSSL_instrument_bus,@function
.align 16
OPENSSL_instrument_bus:
.cfi_startproc
.cfi_startproc
movq %rdi,%r10
movq %rsi,%rcx
movq %rsi,%r11
@ -341,14 +341,14 @@ OPENSSL_instrument_bus:
movq %r11,%rax
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size OPENSSL_instrument_bus,.-OPENSSL_instrument_bus
.globl OPENSSL_instrument_bus2
.type OPENSSL_instrument_bus2,@function
.align 16
OPENSSL_instrument_bus2:
.cfi_startproc
.cfi_startproc
movq %rdi,%r10
movq %rsi,%rcx
movq %rdx,%r11
@ -391,13 +391,13 @@ OPENSSL_instrument_bus2:
movq 8(%rsp),%rax
subq %rcx,%rax
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size OPENSSL_instrument_bus2,.-OPENSSL_instrument_bus2
.globl OPENSSL_ia32_rdrand_bytes
.type OPENSSL_ia32_rdrand_bytes,@function
.align 16
OPENSSL_ia32_rdrand_bytes:
.cfi_startproc
.cfi_startproc
xorq %rax,%rax
cmpq $0,%rsi
je .Ldone_rdrand_bytes
@ -434,13 +434,13 @@ OPENSSL_ia32_rdrand_bytes:
.Ldone_rdrand_bytes:
xorq %r10,%r10
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size OPENSSL_ia32_rdrand_bytes,.-OPENSSL_ia32_rdrand_bytes
.globl OPENSSL_ia32_rdseed_bytes
.type OPENSSL_ia32_rdseed_bytes,@function
.align 16
OPENSSL_ia32_rdseed_bytes:
.cfi_startproc
.cfi_startproc
xorq %rax,%rax
cmpq $0,%rsi
je .Ldone_rdseed_bytes
@ -477,5 +477,5 @@ OPENSSL_ia32_rdseed_bytes:
.Ldone_rdseed_bytes:
xorq %r10,%r10
.byte 0xf3,0xc3
.cfi_endproc
.cfi_endproc
.size OPENSSL_ia32_rdseed_bytes,.-OPENSSL_ia32_rdseed_bytes

View File

@ -2,7 +2,7 @@
* WARNING: do not edit!
* Generated by Makefile from include/openssl/opensslconf.h.in
*
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
* Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@ -117,6 +117,11 @@ extern "C" {
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# elif defined(__SUNPRO_C)
# if (__SUNPRO_C >= 0x5130)
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# endif
#endif

View File

@ -59,9 +59,9 @@ our %config = (
openssl_thread_defines => [ "OPENSSL_THREADS" ],
openssldir => "",
options => " no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-heartbeats no-md2 no-msan no-rc5 no-sctp no-shared no-ssl-trace no-ssl3 no-ssl3-method no-ubsan no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
perl_archname => "x86_64-linux-gnu-thread-multi",
perl_archname => "x86_64-linux-thread-multi",
perl_cmd => "/usr/bin/perl",
perl_version => "5.28.1",
perl_version => "5.32.0",
perlargv => [ "no-comp", "no-shared", "no-afalgeng", "no-asm", "BSD-x86_64" ],
perlenv => {
"AR" => undef,
@ -110,8 +110,8 @@ our %config = (
sourcedir => ".",
target => "BSD-x86_64",
tdirs => [ "ossl_shim" ],
version => "1.1.1g",
version_num => "0x1010107fL",
version => "1.1.1i",
version_num => "0x1010109fL",
);
our %target = (
@ -1180,6 +1180,11 @@ our %unified_info = (
"libssl",
"test/libtestutil.a",
],
"test/cmactest" =>
[
"libcrypto.a",
"test/libtestutil.a",
],
"test/cmsapitest" =>
[
"libcrypto",
@ -8932,6 +8937,11 @@ our %unified_info = (
[
"include",
],
"test/cmactest.o" =>
[
"include",
"apps/include",
],
"test/cmsapitest.o" =>
[
"include",
@ -9509,6 +9519,7 @@ our %unified_info = (
"test/cipherlist_test",
"test/ciphername_test",
"test/clienthellotest",
"test/cmactest",
"test/cmsapitest",
"test/conf_include_test",
"test/constant_time_test",
@ -14169,6 +14180,14 @@ our %unified_info = (
[
"test/clienthellotest.c",
],
"test/cmactest" =>
[
"test/cmactest.o",
],
"test/cmactest.o" =>
[
"test/cmactest.c",
],
"test/cmsapitest" =>
[
"test/cmsapitest.o",

View File

@ -11,7 +11,7 @@
*/
#define PLATFORM "platform: BSD-x86_64"
#define DATE "built on: Tue Apr 21 23:17:12 2020 UTC"
#define DATE "built on: Wed Dec 16 14:13:03 2020 UTC"
/*
* Generate compiler_flags as an array of individual characters. This is a

View File

@ -2,7 +2,7 @@
* WARNING: do not edit!
* Generated by Makefile from include/openssl/opensslconf.h.in
*
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
* Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@ -120,6 +120,11 @@ extern "C" {
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# elif defined(__SUNPRO_C)
# if (__SUNPRO_C >= 0x5130)
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# endif
#endif

View File

@ -64,9 +64,9 @@ our %config = (
openssl_thread_defines => [ "OPENSSL_THREADS" ],
openssldir => "",
options => " no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-heartbeats no-md2 no-msan no-rc5 no-sctp no-shared no-ssl-trace no-ssl3 no-ssl3-method no-ubsan no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
perl_archname => "x86_64-linux-gnu-thread-multi",
perl_archname => "x86_64-linux-thread-multi",
perl_cmd => "/usr/bin/perl",
perl_version => "5.28.1",
perl_version => "5.32.0",
perlargv => [ "no-comp", "no-shared", "no-afalgeng", "VC-WIN32" ],
perlenv => {
"AR" => undef,
@ -115,8 +115,8 @@ our %config = (
sourcedir => ".",
target => "VC-WIN32",
tdirs => [ "ossl_shim" ],
version => "1.1.1g",
version_num => "0x1010107fL",
version => "1.1.1i",
version_num => "0x1010109fL",
);
our %target = (
@ -132,7 +132,7 @@ our %target = (
LDFLAGS => "/nologo /debug",
MT => "mt",
MTFLAGS => "-nologo",
RANLIB => "CODE(0x55af0d848c30)",
RANLIB => "CODE(0x5644d1a7a3d0)",
RC => "rc",
_conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/10-main.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ],
aes_asm_src => "aes_core.c aes_cbc.c vpaes-x86.s aesni-x86.s",
@ -1204,6 +1204,11 @@ our %unified_info = (
"libssl",
"test/libtestutil.a",
],
"test/cmactest" =>
[
"libcrypto.a",
"test/libtestutil.a",
],
"test/cmsapitest" =>
[
"libcrypto",
@ -9038,6 +9043,11 @@ our %unified_info = (
[
"include",
],
"test/cmactest.o" =>
[
"include",
"apps/include",
],
"test/cmsapitest.o" =>
[
"include",
@ -9615,6 +9625,7 @@ our %unified_info = (
"test/cipherlist_test",
"test/ciphername_test",
"test/clienthellotest",
"test/cmactest",
"test/cmsapitest",
"test/conf_include_test",
"test/constant_time_test",
@ -14313,6 +14324,14 @@ our %unified_info = (
[
"test/clienthellotest.c",
],
"test/cmactest" =>
[
"test/cmactest.o",
],
"test/cmactest.o" =>
[
"test/cmactest.c",
],
"test/cmsapitest" =>
[
"test/cmsapitest.o",

View File

@ -11,7 +11,7 @@
*/
#define PLATFORM "platform: "
#define DATE "built on: Tue Apr 21 23:21:31 2020 UTC"
#define DATE "built on: Wed Dec 16 14:16:44 2020 UTC"
/*
* Generate compiler_flags as an array of individual characters. This is a

View File

@ -2,7 +2,7 @@
* WARNING: do not edit!
* Generated by makefile from include/openssl/opensslconf.h.in
*
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
* Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@ -123,6 +123,11 @@ extern "C" {
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# elif defined(__SUNPRO_C)
# if (__SUNPRO_C >= 0x5130)
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# endif
#endif

View File

@ -64,9 +64,9 @@ our %config = (
openssl_thread_defines => [ "OPENSSL_THREADS" ],
openssldir => "",
options => " no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-heartbeats no-md2 no-msan no-rc5 no-sctp no-shared no-ssl-trace no-ssl3 no-ssl3-method no-ubsan no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
perl_archname => "x86_64-linux-gnu-thread-multi",
perl_archname => "x86_64-linux-thread-multi",
perl_cmd => "/usr/bin/perl",
perl_version => "5.28.1",
perl_version => "5.32.0",
perlargv => [ "no-comp", "no-shared", "no-afalgeng", "VC-WIN32" ],
perlenv => {
"AR" => undef,
@ -115,8 +115,8 @@ our %config = (
sourcedir => ".",
target => "VC-WIN32",
tdirs => [ "ossl_shim" ],
version => "1.1.1g",
version_num => "0x1010107fL",
version => "1.1.1i",
version_num => "0x1010109fL",
);
our %target = (
@ -132,7 +132,7 @@ our %target = (
LDFLAGS => "/nologo /debug",
MT => "mt",
MTFLAGS => "-nologo",
RANLIB => "CODE(0x55a72cbd2860)",
RANLIB => "CODE(0x555c4c7e7340)",
RC => "rc",
_conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/10-main.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ],
aes_asm_src => "aes_core.c aes_cbc.c vpaes-x86.s aesni-x86.s",
@ -1204,6 +1204,11 @@ our %unified_info = (
"libssl",
"test/libtestutil.a",
],
"test/cmactest" =>
[
"libcrypto.a",
"test/libtestutil.a",
],
"test/cmsapitest" =>
[
"libcrypto",
@ -9038,6 +9043,11 @@ our %unified_info = (
[
"include",
],
"test/cmactest.o" =>
[
"include",
"apps/include",
],
"test/cmsapitest.o" =>
[
"include",
@ -9615,6 +9625,7 @@ our %unified_info = (
"test/cipherlist_test",
"test/ciphername_test",
"test/clienthellotest",
"test/cmactest",
"test/cmsapitest",
"test/conf_include_test",
"test/constant_time_test",
@ -14313,6 +14324,14 @@ our %unified_info = (
[
"test/clienthellotest.c",
],
"test/cmactest" =>
[
"test/cmactest.o",
],
"test/cmactest.o" =>
[
"test/cmactest.c",
],
"test/cmsapitest" =>
[
"test/cmsapitest.o",

View File

@ -11,7 +11,7 @@
*/
#define PLATFORM "platform: "
#define DATE "built on: Tue Apr 21 23:21:35 2020 UTC"
#define DATE "built on: Wed Dec 16 14:16:48 2020 UTC"
/*
* Generate compiler_flags as an array of individual characters. This is a

View File

@ -2,7 +2,7 @@
* WARNING: do not edit!
* Generated by makefile from include/openssl/opensslconf.h.in
*
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
* Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@ -123,6 +123,11 @@ extern "C" {
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# elif defined(__SUNPRO_C)
# if (__SUNPRO_C >= 0x5130)
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# endif
#endif

View File

@ -63,9 +63,9 @@ our %config = (
openssl_thread_defines => [ "OPENSSL_THREADS" ],
openssldir => "",
options => " no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-heartbeats no-md2 no-msan no-rc5 no-sctp no-shared no-ssl-trace no-ssl3 no-ssl3-method no-ubsan no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
perl_archname => "x86_64-linux-gnu-thread-multi",
perl_archname => "x86_64-linux-thread-multi",
perl_cmd => "/usr/bin/perl",
perl_version => "5.28.1",
perl_version => "5.32.0",
perlargv => [ "no-comp", "no-shared", "no-afalgeng", "no-asm", "VC-WIN32" ],
perlenv => {
"AR" => undef,
@ -114,8 +114,8 @@ our %config = (
sourcedir => ".",
target => "VC-WIN32",
tdirs => [ "ossl_shim" ],
version => "1.1.1g",
version_num => "0x1010107fL",
version => "1.1.1i",
version_num => "0x1010109fL",
);
our %target = (
@ -131,7 +131,7 @@ our %target = (
LDFLAGS => "/nologo /debug",
MT => "mt",
MTFLAGS => "-nologo",
RANLIB => "CODE(0x562a6e5c4040)",
RANLIB => "CODE(0x558a998e5b40)",
RC => "rc",
_conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/10-main.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ],
aes_asm_src => "aes_core.c aes_cbc.c",
@ -1202,6 +1202,11 @@ our %unified_info = (
"libssl",
"test/libtestutil.a",
],
"test/cmactest" =>
[
"libcrypto.a",
"test/libtestutil.a",
],
"test/cmsapitest" =>
[
"libcrypto",
@ -8958,6 +8963,11 @@ our %unified_info = (
[
"include",
],
"test/cmactest.o" =>
[
"include",
"apps/include",
],
"test/cmsapitest.o" =>
[
"include",
@ -9535,6 +9545,7 @@ our %unified_info = (
"test/cipherlist_test",
"test/ciphername_test",
"test/clienthellotest",
"test/cmactest",
"test/cmsapitest",
"test/conf_include_test",
"test/constant_time_test",
@ -14168,6 +14179,14 @@ our %unified_info = (
[
"test/clienthellotest.c",
],
"test/cmactest" =>
[
"test/cmactest.o",
],
"test/cmactest.o" =>
[
"test/cmactest.c",
],
"test/cmsapitest" =>
[
"test/cmsapitest.o",

View File

@ -11,7 +11,7 @@
*/
#define PLATFORM "platform: "
#define DATE "built on: Tue Apr 21 23:21:39 2020 UTC"
#define DATE "built on: Wed Dec 16 14:16:52 2020 UTC"
/*
* Generate compiler_flags as an array of individual characters. This is a

View File

@ -2,7 +2,7 @@
* WARNING: do not edit!
* Generated by makefile from include/openssl/opensslconf.h.in
*
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
* Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@ -126,6 +126,11 @@ extern "C" {
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# elif defined(__SUNPRO_C)
# if (__SUNPRO_C >= 0x5130)
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# endif
#endif

View File

@ -62,9 +62,9 @@ our %config = (
openssl_thread_defines => [ "OPENSSL_THREADS" ],
openssldir => "",
options => " no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-heartbeats no-md2 no-msan no-rc5 no-sctp no-shared no-ssl-trace no-ssl3 no-ssl3-method no-ubsan no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
perl_archname => "x86_64-linux-gnu-thread-multi",
perl_archname => "x86_64-linux-thread-multi",
perl_cmd => "/usr/bin/perl",
perl_version => "5.28.1",
perl_version => "5.32.0",
perlargv => [ "no-comp", "no-shared", "no-afalgeng", "no-asm", "VC-WIN64-ARM" ],
perlenv => {
"AR" => undef,
@ -113,8 +113,8 @@ our %config = (
sourcedir => ".",
target => "VC-WIN64-ARM",
tdirs => [ "ossl_shim" ],
version => "1.1.1g",
version_num => "0x1010107fL",
version => "1.1.1i",
version_num => "0x1010109fL",
);
our %target = (
@ -128,7 +128,7 @@ our %target = (
LDFLAGS => "/nologo /debug",
MT => "mt",
MTFLAGS => "-nologo",
RANLIB => "CODE(0x5630762368d0)",
RANLIB => "CODE(0x5649b3288d90)",
RC => "rc",
_conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/10-main.conf", "Configurations/50-win-onecore.conf", "Configurations/shared-info.pl" ],
aes_asm_src => "aes_core.c aes_cbc.c",
@ -1196,6 +1196,11 @@ our %unified_info = (
"libssl",
"test/libtestutil.a",
],
"test/cmactest" =>
[
"libcrypto.a",
"test/libtestutil.a",
],
"test/cmsapitest" =>
[
"libcrypto",
@ -8952,6 +8957,11 @@ our %unified_info = (
[
"include",
],
"test/cmactest.o" =>
[
"include",
"apps/include",
],
"test/cmsapitest.o" =>
[
"include",
@ -9529,6 +9539,7 @@ our %unified_info = (
"test/cipherlist_test",
"test/ciphername_test",
"test/clienthellotest",
"test/cmactest",
"test/cmsapitest",
"test/conf_include_test",
"test/constant_time_test",
@ -14162,6 +14173,14 @@ our %unified_info = (
[
"test/clienthellotest.c",
],
"test/cmactest" =>
[
"test/cmactest.o",
],
"test/cmactest.o" =>
[
"test/cmactest.c",
],
"test/cmsapitest" =>
[
"test/cmsapitest.o",

View File

@ -11,7 +11,7 @@
*/
#define PLATFORM "platform: VC-WIN64-ARM"
#define DATE "built on: Tue Apr 21 23:21:41 2020 UTC"
#define DATE "built on: Wed Dec 16 14:16:54 2020 UTC"
/*
* Generate compiler_flags as an array of individual characters. This is a

View File

@ -2,7 +2,7 @@
* WARNING: do not edit!
* Generated by makefile from include/openssl/opensslconf.h.in
*
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
* Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@ -126,6 +126,11 @@ extern "C" {
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# elif defined(__SUNPRO_C)
# if (__SUNPRO_C >= 0x5130)
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# endif
#endif

View File

@ -65,9 +65,9 @@ our %config = (
openssl_thread_defines => [ "OPENSSL_THREADS" ],
openssldir => "",
options => " no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-heartbeats no-md2 no-msan no-rc5 no-sctp no-shared no-ssl-trace no-ssl3 no-ssl3-method no-ubsan no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
perl_archname => "x86_64-linux-gnu-thread-multi",
perl_archname => "x86_64-linux-thread-multi",
perl_cmd => "/usr/bin/perl",
perl_version => "5.28.1",
perl_version => "5.32.0",
perlargv => [ "no-comp", "no-shared", "no-afalgeng", "VC-WIN64A" ],
perlenv => {
"AR" => undef,
@ -116,8 +116,8 @@ our %config = (
sourcedir => ".",
target => "VC-WIN64A",
tdirs => [ "ossl_shim" ],
version => "1.1.1g",
version_num => "0x1010107fL",
version => "1.1.1i",
version_num => "0x1010109fL",
);
our %target = (
@ -133,7 +133,7 @@ our %target = (
LDFLAGS => "/nologo /debug",
MT => "mt",
MTFLAGS => "-nologo",
RANLIB => "CODE(0x55ac83acd560)",
RANLIB => "CODE(0x557a63c90ce0)",
RC => "rc",
_conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/10-main.conf", "Configurations/10-main.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ],
aes_asm_src => "aes_core.c aes_cbc.c vpaes-x86_64.s aesni-x86_64.s aesni-sha1-x86_64.s aesni-sha256-x86_64.s aesni-mb-x86_64.s",
@ -1206,6 +1206,11 @@ our %unified_info = (
"libssl",
"test/libtestutil.a",
],
"test/cmactest" =>
[
"libcrypto.a",
"test/libtestutil.a",
],
"test/cmsapitest" =>
[
"libcrypto",
@ -9100,6 +9105,11 @@ our %unified_info = (
[
"include",
],
"test/cmactest.o" =>
[
"include",
"apps/include",
],
"test/cmsapitest.o" =>
[
"include",
@ -9677,6 +9687,7 @@ our %unified_info = (
"test/cipherlist_test",
"test/ciphername_test",
"test/clienthellotest",
"test/cmactest",
"test/cmsapitest",
"test/conf_include_test",
"test/constant_time_test",
@ -14425,6 +14436,14 @@ our %unified_info = (
[
"test/clienthellotest.c",
],
"test/cmactest" =>
[
"test/cmactest.o",
],
"test/cmactest.o" =>
[
"test/cmactest.c",
],
"test/cmsapitest" =>
[
"test/cmsapitest.o",

View File

@ -11,7 +11,7 @@
*/
#define PLATFORM "platform: "
#define DATE "built on: Tue Apr 21 23:21:06 2020 UTC"
#define DATE "built on: Wed Dec 16 14:16:22 2020 UTC"
/*
* Generate compiler_flags as an array of individual characters. This is a

View File

@ -478,3 +478,4 @@ $L$done_rdseed_bytes:
xor r10,r10
DB 0F3h,0C3h ;repret

View File

@ -2,7 +2,7 @@
* WARNING: do not edit!
* Generated by makefile from include/openssl/opensslconf.h.in
*
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
* Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@ -123,6 +123,11 @@ extern "C" {
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# elif defined(__SUNPRO_C)
# if (__SUNPRO_C >= 0x5130)
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# endif
#endif

View File

@ -65,9 +65,9 @@ our %config = (
openssl_thread_defines => [ "OPENSSL_THREADS" ],
openssldir => "",
options => " no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-heartbeats no-md2 no-msan no-rc5 no-sctp no-shared no-ssl-trace no-ssl3 no-ssl3-method no-ubsan no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
perl_archname => "x86_64-linux-gnu-thread-multi",
perl_archname => "x86_64-linux-thread-multi",
perl_cmd => "/usr/bin/perl",
perl_version => "5.28.1",
perl_version => "5.32.0",
perlargv => [ "no-comp", "no-shared", "no-afalgeng", "VC-WIN64A" ],
perlenv => {
"AR" => undef,
@ -116,8 +116,8 @@ our %config = (
sourcedir => ".",
target => "VC-WIN64A",
tdirs => [ "ossl_shim" ],
version => "1.1.1g",
version_num => "0x1010107fL",
version => "1.1.1i",
version_num => "0x1010109fL",
);
our %target = (
@ -133,7 +133,7 @@ our %target = (
LDFLAGS => "/nologo /debug",
MT => "mt",
MTFLAGS => "-nologo",
RANLIB => "CODE(0x56142e79abb0)",
RANLIB => "CODE(0x558f59b05760)",
RC => "rc",
_conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/10-main.conf", "Configurations/10-main.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ],
aes_asm_src => "aes_core.c aes_cbc.c vpaes-x86_64.s aesni-x86_64.s aesni-sha1-x86_64.s aesni-sha256-x86_64.s aesni-mb-x86_64.s",
@ -1206,6 +1206,11 @@ our %unified_info = (
"libssl",
"test/libtestutil.a",
],
"test/cmactest" =>
[
"libcrypto.a",
"test/libtestutil.a",
],
"test/cmsapitest" =>
[
"libcrypto",
@ -9100,6 +9105,11 @@ our %unified_info = (
[
"include",
],
"test/cmactest.o" =>
[
"include",
"apps/include",
],
"test/cmsapitest.o" =>
[
"include",
@ -9677,6 +9687,7 @@ our %unified_info = (
"test/cipherlist_test",
"test/ciphername_test",
"test/clienthellotest",
"test/cmactest",
"test/cmsapitest",
"test/conf_include_test",
"test/constant_time_test",
@ -14425,6 +14436,14 @@ our %unified_info = (
[
"test/clienthellotest.c",
],
"test/cmactest" =>
[
"test/cmactest.o",
],
"test/cmactest.o" =>
[
"test/cmactest.c",
],
"test/cmsapitest" =>
[
"test/cmsapitest.o",

View File

@ -11,7 +11,7 @@
*/
#define PLATFORM "platform: "
#define DATE "built on: Tue Apr 21 23:21:18 2020 UTC"
#define DATE "built on: Wed Dec 16 14:16:32 2020 UTC"
/*
* Generate compiler_flags as an array of individual characters. This is a

View File

@ -478,3 +478,4 @@ $L$done_rdseed_bytes:
xor r10,r10
DB 0F3h,0C3h ;repret

View File

@ -2,7 +2,7 @@
* WARNING: do not edit!
* Generated by makefile from include/openssl/opensslconf.h.in
*
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
* Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@ -123,6 +123,11 @@ extern "C" {
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# elif defined(__SUNPRO_C)
# if (__SUNPRO_C >= 0x5130)
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# endif
#endif

View File

@ -64,9 +64,9 @@ our %config = (
openssl_thread_defines => [ "OPENSSL_THREADS" ],
openssldir => "",
options => " no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-heartbeats no-md2 no-msan no-rc5 no-sctp no-shared no-ssl-trace no-ssl3 no-ssl3-method no-ubsan no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
perl_archname => "x86_64-linux-gnu-thread-multi",
perl_archname => "x86_64-linux-thread-multi",
perl_cmd => "/usr/bin/perl",
perl_version => "5.28.1",
perl_version => "5.32.0",
perlargv => [ "no-comp", "no-shared", "no-afalgeng", "no-asm", "VC-WIN64A" ],
perlenv => {
"AR" => undef,
@ -115,8 +115,8 @@ our %config = (
sourcedir => ".",
target => "VC-WIN64A",
tdirs => [ "ossl_shim" ],
version => "1.1.1g",
version_num => "0x1010107fL",
version => "1.1.1i",
version_num => "0x1010109fL",
);
our %target = (
@ -132,7 +132,7 @@ our %target = (
LDFLAGS => "/nologo /debug",
MT => "mt",
MTFLAGS => "-nologo",
RANLIB => "CODE(0x562e94f92f10)",
RANLIB => "CODE(0x55d47018f410)",
RC => "rc",
_conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/10-main.conf", "Configurations/10-main.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ],
aes_asm_src => "aes_core.c aes_cbc.c",
@ -1204,6 +1204,11 @@ our %unified_info = (
"libssl",
"test/libtestutil.a",
],
"test/cmactest" =>
[
"libcrypto.a",
"test/libtestutil.a",
],
"test/cmsapitest" =>
[
"libcrypto",
@ -8960,6 +8965,11 @@ our %unified_info = (
[
"include",
],
"test/cmactest.o" =>
[
"include",
"apps/include",
],
"test/cmsapitest.o" =>
[
"include",
@ -9537,6 +9547,7 @@ our %unified_info = (
"test/cipherlist_test",
"test/ciphername_test",
"test/clienthellotest",
"test/cmactest",
"test/cmsapitest",
"test/conf_include_test",
"test/constant_time_test",
@ -14170,6 +14181,14 @@ our %unified_info = (
[
"test/clienthellotest.c",
],
"test/cmactest" =>
[
"test/cmactest.o",
],
"test/cmactest.o" =>
[
"test/cmactest.c",
],
"test/cmsapitest" =>
[
"test/cmsapitest.o",

View File

@ -11,7 +11,7 @@
*/
#define PLATFORM "platform: "
#define DATE "built on: Tue Apr 21 23:21:29 2020 UTC"
#define DATE "built on: Wed Dec 16 14:16:42 2020 UTC"
/*
* Generate compiler_flags as an array of individual characters. This is a

View File

@ -2,7 +2,7 @@
* WARNING: do not edit!
* Generated by makefile from include/openssl/opensslconf.h.in
*
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
* Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@ -126,6 +126,11 @@ extern "C" {
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# elif defined(__SUNPRO_C)
# if (__SUNPRO_C >= 0x5130)
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# endif
#endif

View File

@ -59,9 +59,9 @@ our %config = (
openssl_thread_defines => [ "OPENSSL_THREADS" ],
openssldir => "",
options => " no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-heartbeats no-md2 no-msan no-rc5 no-sctp no-shared no-ssl-trace no-ssl3 no-ssl3-method no-ubsan no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
perl_archname => "x86_64-linux-gnu-thread-multi",
perl_archname => "x86_64-linux-thread-multi",
perl_cmd => "/usr/bin/perl",
perl_version => "5.28.1",
perl_version => "5.32.0",
perlargv => [ "no-comp", "no-shared", "no-afalgeng", "aix-gcc" ],
perlenv => {
"AR" => undef,
@ -110,8 +110,8 @@ our %config = (
sourcedir => ".",
target => "aix-gcc",
tdirs => [ "ossl_shim" ],
version => "1.1.1g",
version_num => "0x1010107fL",
version => "1.1.1i",
version_num => "0x1010109fL",
);
our %target = (
@ -1183,6 +1183,11 @@ our %unified_info = (
"libssl",
"test/libtestutil.a",
],
"test/cmactest" =>
[
"libcrypto.a",
"test/libtestutil.a",
],
"test/cmsapitest" =>
[
"libcrypto",
@ -9007,6 +9012,11 @@ our %unified_info = (
[
"include",
],
"test/cmactest.o" =>
[
"include",
"apps/include",
],
"test/cmsapitest.o" =>
[
"include",
@ -9584,6 +9594,7 @@ our %unified_info = (
"test/cipherlist_test",
"test/ciphername_test",
"test/clienthellotest",
"test/cmactest",
"test/cmsapitest",
"test/conf_include_test",
"test/constant_time_test",
@ -14304,6 +14315,14 @@ our %unified_info = (
[
"test/clienthellotest.c",
],
"test/cmactest" =>
[
"test/cmactest.o",
],
"test/cmactest.o" =>
[
"test/cmactest.c",
],
"test/cmsapitest" =>
[
"test/cmsapitest.o",

View File

@ -11,7 +11,7 @@
*/
#define PLATFORM "platform: aix-gcc"
#define DATE "built on: Tue Apr 21 23:16:31 2020 UTC"
#define DATE "built on: Wed Dec 16 14:12:28 2020 UTC"
/*
* Generate compiler_flags as an array of individual characters. This is a

View File

@ -2,7 +2,7 @@
* WARNING: do not edit!
* Generated by Makefile from include/openssl/opensslconf.h.in
*
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
* Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@ -123,6 +123,11 @@ extern "C" {
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# elif defined(__SUNPRO_C)
# if (__SUNPRO_C >= 0x5130)
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# endif
#endif

View File

@ -59,9 +59,9 @@ our %config = (
openssl_thread_defines => [ "OPENSSL_THREADS" ],
openssldir => "",
options => " no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-heartbeats no-md2 no-msan no-rc5 no-sctp no-shared no-ssl-trace no-ssl3 no-ssl3-method no-ubsan no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
perl_archname => "x86_64-linux-gnu-thread-multi",
perl_archname => "x86_64-linux-thread-multi",
perl_cmd => "/usr/bin/perl",
perl_version => "5.28.1",
perl_version => "5.32.0",
perlargv => [ "no-comp", "no-shared", "no-afalgeng", "aix-gcc" ],
perlenv => {
"AR" => undef,
@ -110,8 +110,8 @@ our %config = (
sourcedir => ".",
target => "aix-gcc",
tdirs => [ "ossl_shim" ],
version => "1.1.1g",
version_num => "0x1010107fL",
version => "1.1.1i",
version_num => "0x1010109fL",
);
our %target = (
@ -1183,6 +1183,11 @@ our %unified_info = (
"libssl",
"test/libtestutil.a",
],
"test/cmactest" =>
[
"libcrypto.a",
"test/libtestutil.a",
],
"test/cmsapitest" =>
[
"libcrypto",
@ -9007,6 +9012,11 @@ our %unified_info = (
[
"include",
],
"test/cmactest.o" =>
[
"include",
"apps/include",
],
"test/cmsapitest.o" =>
[
"include",
@ -9584,6 +9594,7 @@ our %unified_info = (
"test/cipherlist_test",
"test/ciphername_test",
"test/clienthellotest",
"test/cmactest",
"test/cmsapitest",
"test/conf_include_test",
"test/constant_time_test",
@ -14304,6 +14315,14 @@ our %unified_info = (
[
"test/clienthellotest.c",
],
"test/cmactest" =>
[
"test/cmactest.o",
],
"test/cmactest.o" =>
[
"test/cmactest.c",
],
"test/cmsapitest" =>
[
"test/cmsapitest.o",

View File

@ -11,7 +11,7 @@
*/
#define PLATFORM "platform: aix-gcc"
#define DATE "built on: Tue Apr 21 23:16:34 2020 UTC"
#define DATE "built on: Wed Dec 16 14:12:31 2020 UTC"
/*
* Generate compiler_flags as an array of individual characters. This is a

View File

@ -2,7 +2,7 @@
* WARNING: do not edit!
* Generated by Makefile from include/openssl/opensslconf.h.in
*
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
* Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@ -123,6 +123,11 @@ extern "C" {
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# elif defined(__SUNPRO_C)
# if (__SUNPRO_C >= 0x5130)
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# endif
#endif

View File

@ -59,9 +59,9 @@ our %config = (
openssl_thread_defines => [ "OPENSSL_THREADS" ],
openssldir => "",
options => " no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-heartbeats no-md2 no-msan no-rc5 no-sctp no-shared no-ssl-trace no-ssl3 no-ssl3-method no-ubsan no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
perl_archname => "x86_64-linux-gnu-thread-multi",
perl_archname => "x86_64-linux-thread-multi",
perl_cmd => "/usr/bin/perl",
perl_version => "5.28.1",
perl_version => "5.32.0",
perlargv => [ "no-comp", "no-shared", "no-afalgeng", "no-asm", "aix-gcc" ],
perlenv => {
"AR" => undef,
@ -110,8 +110,8 @@ our %config = (
sourcedir => ".",
target => "aix-gcc",
tdirs => [ "ossl_shim" ],
version => "1.1.1g",
version_num => "0x1010107fL",
version => "1.1.1i",
version_num => "0x1010109fL",
);
our %target = (
@ -1182,6 +1182,11 @@ our %unified_info = (
"libssl",
"test/libtestutil.a",
],
"test/cmactest" =>
[
"libcrypto.a",
"test/libtestutil.a",
],
"test/cmsapitest" =>
[
"libcrypto",
@ -8928,6 +8933,11 @@ our %unified_info = (
[
"include",
],
"test/cmactest.o" =>
[
"include",
"apps/include",
],
"test/cmsapitest.o" =>
[
"include",
@ -9505,6 +9515,7 @@ our %unified_info = (
"test/cipherlist_test",
"test/ciphername_test",
"test/clienthellotest",
"test/cmactest",
"test/cmsapitest",
"test/conf_include_test",
"test/constant_time_test",
@ -14160,6 +14171,14 @@ our %unified_info = (
[
"test/clienthellotest.c",
],
"test/cmactest" =>
[
"test/cmactest.o",
],
"test/cmactest.o" =>
[
"test/cmactest.c",
],
"test/cmsapitest" =>
[
"test/cmsapitest.o",

View File

@ -11,7 +11,7 @@
*/
#define PLATFORM "platform: aix-gcc"
#define DATE "built on: Tue Apr 21 23:16:38 2020 UTC"
#define DATE "built on: Wed Dec 16 14:12:35 2020 UTC"
/*
* Generate compiler_flags as an array of individual characters. This is a

View File

@ -2,7 +2,7 @@
* WARNING: do not edit!
* Generated by Makefile from include/openssl/opensslconf.h.in
*
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
* Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@ -126,6 +126,11 @@ extern "C" {
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# elif defined(__SUNPRO_C)
# if (__SUNPRO_C >= 0x5130)
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# endif
#endif

View File

@ -59,9 +59,9 @@ our %config = (
openssl_thread_defines => [ "OPENSSL_THREADS" ],
openssldir => "",
options => " no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-heartbeats no-md2 no-msan no-rc5 no-sctp no-shared no-ssl-trace no-ssl3 no-ssl3-method no-ubsan no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
perl_archname => "x86_64-linux-gnu-thread-multi",
perl_archname => "x86_64-linux-thread-multi",
perl_cmd => "/usr/bin/perl",
perl_version => "5.28.1",
perl_version => "5.32.0",
perlargv => [ "no-comp", "no-shared", "no-afalgeng", "aix64-gcc" ],
perlenv => {
"AR" => undef,
@ -110,8 +110,8 @@ our %config = (
sourcedir => ".",
target => "aix64-gcc",
tdirs => [ "ossl_shim" ],
version => "1.1.1g",
version_num => "0x1010107fL",
version => "1.1.1i",
version_num => "0x1010109fL",
);
our %target = (
@ -1183,6 +1183,11 @@ our %unified_info = (
"libssl",
"test/libtestutil.a",
],
"test/cmactest" =>
[
"libcrypto.a",
"test/libtestutil.a",
],
"test/cmsapitest" =>
[
"libcrypto",
@ -9025,6 +9030,11 @@ our %unified_info = (
[
"include",
],
"test/cmactest.o" =>
[
"include",
"apps/include",
],
"test/cmsapitest.o" =>
[
"include",
@ -9602,6 +9612,7 @@ our %unified_info = (
"test/cipherlist_test",
"test/ciphername_test",
"test/clienthellotest",
"test/cmactest",
"test/cmsapitest",
"test/conf_include_test",
"test/constant_time_test",
@ -14337,6 +14348,14 @@ our %unified_info = (
[
"test/clienthellotest.c",
],
"test/cmactest" =>
[
"test/cmactest.o",
],
"test/cmactest.o" =>
[
"test/cmactest.c",
],
"test/cmsapitest" =>
[
"test/cmsapitest.o",

View File

@ -11,7 +11,7 @@
*/
#define PLATFORM "platform: aix64-gcc"
#define DATE "built on: Tue Apr 21 23:16:40 2020 UTC"
#define DATE "built on: Wed Dec 16 14:12:37 2020 UTC"
/*
* Generate compiler_flags as an array of individual characters. This is a

View File

@ -2,7 +2,7 @@
* WARNING: do not edit!
* Generated by Makefile from include/openssl/opensslconf.h.in
*
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
* Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@ -123,6 +123,11 @@ extern "C" {
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# elif defined(__SUNPRO_C)
# if (__SUNPRO_C >= 0x5130)
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# endif
#endif

View File

@ -59,9 +59,9 @@ our %config = (
openssl_thread_defines => [ "OPENSSL_THREADS" ],
openssldir => "",
options => " no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-heartbeats no-md2 no-msan no-rc5 no-sctp no-shared no-ssl-trace no-ssl3 no-ssl3-method no-ubsan no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
perl_archname => "x86_64-linux-gnu-thread-multi",
perl_archname => "x86_64-linux-thread-multi",
perl_cmd => "/usr/bin/perl",
perl_version => "5.28.1",
perl_version => "5.32.0",
perlargv => [ "no-comp", "no-shared", "no-afalgeng", "aix64-gcc" ],
perlenv => {
"AR" => undef,
@ -110,8 +110,8 @@ our %config = (
sourcedir => ".",
target => "aix64-gcc",
tdirs => [ "ossl_shim" ],
version => "1.1.1g",
version_num => "0x1010107fL",
version => "1.1.1i",
version_num => "0x1010109fL",
);
our %target = (
@ -1183,6 +1183,11 @@ our %unified_info = (
"libssl",
"test/libtestutil.a",
],
"test/cmactest" =>
[
"libcrypto.a",
"test/libtestutil.a",
],
"test/cmsapitest" =>
[
"libcrypto",
@ -9025,6 +9030,11 @@ our %unified_info = (
[
"include",
],
"test/cmactest.o" =>
[
"include",
"apps/include",
],
"test/cmsapitest.o" =>
[
"include",
@ -9602,6 +9612,7 @@ our %unified_info = (
"test/cipherlist_test",
"test/ciphername_test",
"test/clienthellotest",
"test/cmactest",
"test/cmsapitest",
"test/conf_include_test",
"test/constant_time_test",
@ -14337,6 +14348,14 @@ our %unified_info = (
[
"test/clienthellotest.c",
],
"test/cmactest" =>
[
"test/cmactest.o",
],
"test/cmactest.o" =>
[
"test/cmactest.c",
],
"test/cmsapitest" =>
[
"test/cmsapitest.o",

View File

@ -11,7 +11,7 @@
*/
#define PLATFORM "platform: aix64-gcc"
#define DATE "built on: Tue Apr 21 23:16:45 2020 UTC"
#define DATE "built on: Wed Dec 16 14:12:41 2020 UTC"
/*
* Generate compiler_flags as an array of individual characters. This is a

View File

@ -2,7 +2,7 @@
* WARNING: do not edit!
* Generated by Makefile from include/openssl/opensslconf.h.in
*
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
* Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@ -123,6 +123,11 @@ extern "C" {
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# elif defined(__SUNPRO_C)
# if (__SUNPRO_C >= 0x5130)
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# endif
#endif

View File

@ -59,9 +59,9 @@ our %config = (
openssl_thread_defines => [ "OPENSSL_THREADS" ],
openssldir => "",
options => " no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-heartbeats no-md2 no-msan no-rc5 no-sctp no-shared no-ssl-trace no-ssl3 no-ssl3-method no-ubsan no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
perl_archname => "x86_64-linux-gnu-thread-multi",
perl_archname => "x86_64-linux-thread-multi",
perl_cmd => "/usr/bin/perl",
perl_version => "5.28.1",
perl_version => "5.32.0",
perlargv => [ "no-comp", "no-shared", "no-afalgeng", "no-asm", "aix64-gcc" ],
perlenv => {
"AR" => undef,
@ -110,8 +110,8 @@ our %config = (
sourcedir => ".",
target => "aix64-gcc",
tdirs => [ "ossl_shim" ],
version => "1.1.1g",
version_num => "0x1010107fL",
version => "1.1.1i",
version_num => "0x1010109fL",
);
our %target = (
@ -1182,6 +1182,11 @@ our %unified_info = (
"libssl",
"test/libtestutil.a",
],
"test/cmactest" =>
[
"libcrypto.a",
"test/libtestutil.a",
],
"test/cmsapitest" =>
[
"libcrypto",
@ -8928,6 +8933,11 @@ our %unified_info = (
[
"include",
],
"test/cmactest.o" =>
[
"include",
"apps/include",
],
"test/cmsapitest.o" =>
[
"include",
@ -9505,6 +9515,7 @@ our %unified_info = (
"test/cipherlist_test",
"test/ciphername_test",
"test/clienthellotest",
"test/cmactest",
"test/cmsapitest",
"test/conf_include_test",
"test/constant_time_test",
@ -14160,6 +14171,14 @@ our %unified_info = (
[
"test/clienthellotest.c",
],
"test/cmactest" =>
[
"test/cmactest.o",
],
"test/cmactest.o" =>
[
"test/cmactest.c",
],
"test/cmsapitest" =>
[
"test/cmsapitest.o",

View File

@ -11,7 +11,7 @@
*/
#define PLATFORM "platform: aix64-gcc"
#define DATE "built on: Tue Apr 21 23:16:50 2020 UTC"
#define DATE "built on: Wed Dec 16 14:12:44 2020 UTC"
/*
* Generate compiler_flags as an array of individual characters. This is a

View File

@ -2,7 +2,7 @@
* WARNING: do not edit!
* Generated by Makefile from include/openssl/opensslconf.h.in
*
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
* Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@ -126,6 +126,11 @@ extern "C" {
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# elif defined(__SUNPRO_C)
# if (__SUNPRO_C >= 0x5130)
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# endif
#endif

View File

@ -60,9 +60,9 @@ our %config = (
openssl_thread_defines => [ "OPENSSL_THREADS" ],
openssldir => "",
options => " no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-heartbeats no-md2 no-msan no-rc5 no-sctp no-shared no-ssl-trace no-ssl3 no-ssl3-method no-ubsan no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
perl_archname => "x86_64-linux-gnu-thread-multi",
perl_archname => "x86_64-linux-thread-multi",
perl_cmd => "/usr/bin/perl",
perl_version => "5.28.1",
perl_version => "5.32.0",
perlargv => [ "no-comp", "no-shared", "no-afalgeng", "darwin-i386-cc" ],
perlenv => {
"AR" => undef,
@ -111,8 +111,8 @@ our %config = (
sourcedir => ".",
target => "darwin-i386-cc",
tdirs => [ "ossl_shim" ],
version => "1.1.1g",
version_num => "0x1010107fL",
version => "1.1.1i",
version_num => "0x1010109fL",
);
our %target = (
@ -1174,6 +1174,11 @@ our %unified_info = (
"libssl",
"test/libtestutil.a",
],
"test/cmactest" =>
[
"libcrypto.a",
"test/libtestutil.a",
],
"test/cmsapitest" =>
[
"libcrypto",
@ -8986,6 +8991,11 @@ our %unified_info = (
[
"include",
],
"test/cmactest.o" =>
[
"include",
"apps/include",
],
"test/cmsapitest.o" =>
[
"include",
@ -9563,6 +9573,7 @@ our %unified_info = (
"test/cipherlist_test",
"test/ciphername_test",
"test/clienthellotest",
"test/cmactest",
"test/cmsapitest",
"test/conf_include_test",
"test/constant_time_test",
@ -14283,6 +14294,14 @@ our %unified_info = (
[
"test/clienthellotest.c",
],
"test/cmactest" =>
[
"test/cmactest.o",
],
"test/cmactest.o" =>
[
"test/cmactest.c",
],
"test/cmsapitest" =>
[
"test/cmsapitest.o",

View File

@ -11,7 +11,7 @@
*/
#define PLATFORM "platform: darwin-i386-cc"
#define DATE "built on: Tue Apr 21 23:17:35 2020 UTC"
#define DATE "built on: Wed Dec 16 14:13:26 2020 UTC"
/*
* Generate compiler_flags as an array of individual characters. This is a

View File

@ -2,7 +2,7 @@
* WARNING: do not edit!
* Generated by Makefile from include/openssl/opensslconf.h.in
*
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
* Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@ -123,6 +123,11 @@ extern "C" {
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# elif defined(__SUNPRO_C)
# if (__SUNPRO_C >= 0x5130)
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# endif
#endif

View File

@ -60,9 +60,9 @@ our %config = (
openssl_thread_defines => [ "OPENSSL_THREADS" ],
openssldir => "",
options => " no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-heartbeats no-md2 no-msan no-rc5 no-sctp no-shared no-ssl-trace no-ssl3 no-ssl3-method no-ubsan no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
perl_archname => "x86_64-linux-gnu-thread-multi",
perl_archname => "x86_64-linux-thread-multi",
perl_cmd => "/usr/bin/perl",
perl_version => "5.28.1",
perl_version => "5.32.0",
perlargv => [ "no-comp", "no-shared", "no-afalgeng", "darwin-i386-cc" ],
perlenv => {
"AR" => undef,
@ -111,8 +111,8 @@ our %config = (
sourcedir => ".",
target => "darwin-i386-cc",
tdirs => [ "ossl_shim" ],
version => "1.1.1g",
version_num => "0x1010107fL",
version => "1.1.1i",
version_num => "0x1010109fL",
);
our %target = (
@ -1174,6 +1174,11 @@ our %unified_info = (
"libssl",
"test/libtestutil.a",
],
"test/cmactest" =>
[
"libcrypto.a",
"test/libtestutil.a",
],
"test/cmsapitest" =>
[
"libcrypto",
@ -8986,6 +8991,11 @@ our %unified_info = (
[
"include",
],
"test/cmactest.o" =>
[
"include",
"apps/include",
],
"test/cmsapitest.o" =>
[
"include",
@ -9563,6 +9573,7 @@ our %unified_info = (
"test/cipherlist_test",
"test/ciphername_test",
"test/clienthellotest",
"test/cmactest",
"test/cmsapitest",
"test/conf_include_test",
"test/constant_time_test",
@ -14283,6 +14294,14 @@ our %unified_info = (
[
"test/clienthellotest.c",
],
"test/cmactest" =>
[
"test/cmactest.o",
],
"test/cmactest.o" =>
[
"test/cmactest.c",
],
"test/cmsapitest" =>
[
"test/cmsapitest.o",

View File

@ -11,7 +11,7 @@
*/
#define PLATFORM "platform: darwin-i386-cc"
#define DATE "built on: Tue Apr 21 23:17:39 2020 UTC"
#define DATE "built on: Wed Dec 16 14:13:30 2020 UTC"
/*
* Generate compiler_flags as an array of individual characters. This is a

View File

@ -2,7 +2,7 @@
* WARNING: do not edit!
* Generated by Makefile from include/openssl/opensslconf.h.in
*
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
* Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@ -123,6 +123,11 @@ extern "C" {
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# elif defined(__SUNPRO_C)
# if (__SUNPRO_C >= 0x5130)
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# endif
#endif

View File

@ -59,9 +59,9 @@ our %config = (
openssl_thread_defines => [ "OPENSSL_THREADS" ],
openssldir => "",
options => " no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-heartbeats no-md2 no-msan no-rc5 no-sctp no-shared no-ssl-trace no-ssl3 no-ssl3-method no-ubsan no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
perl_archname => "x86_64-linux-gnu-thread-multi",
perl_archname => "x86_64-linux-thread-multi",
perl_cmd => "/usr/bin/perl",
perl_version => "5.28.1",
perl_version => "5.32.0",
perlargv => [ "no-comp", "no-shared", "no-afalgeng", "no-asm", "darwin-i386-cc" ],
perlenv => {
"AR" => undef,
@ -110,8 +110,8 @@ our %config = (
sourcedir => ".",
target => "darwin-i386-cc",
tdirs => [ "ossl_shim" ],
version => "1.1.1g",
version_num => "0x1010107fL",
version => "1.1.1i",
version_num => "0x1010109fL",
);
our %target = (
@ -1172,6 +1172,11 @@ our %unified_info = (
"libssl",
"test/libtestutil.a",
],
"test/cmactest" =>
[
"libcrypto.a",
"test/libtestutil.a",
],
"test/cmsapitest" =>
[
"libcrypto",
@ -8906,6 +8911,11 @@ our %unified_info = (
[
"include",
],
"test/cmactest.o" =>
[
"include",
"apps/include",
],
"test/cmsapitest.o" =>
[
"include",
@ -9483,6 +9493,7 @@ our %unified_info = (
"test/cipherlist_test",
"test/ciphername_test",
"test/clienthellotest",
"test/cmactest",
"test/cmsapitest",
"test/conf_include_test",
"test/constant_time_test",
@ -14138,6 +14149,14 @@ our %unified_info = (
[
"test/clienthellotest.c",
],
"test/cmactest" =>
[
"test/cmactest.o",
],
"test/cmactest.o" =>
[
"test/cmactest.c",
],
"test/cmsapitest" =>
[
"test/cmsapitest.o",

View File

@ -11,7 +11,7 @@
*/
#define PLATFORM "platform: darwin-i386-cc"
#define DATE "built on: Tue Apr 21 23:17:43 2020 UTC"
#define DATE "built on: Wed Dec 16 14:13:35 2020 UTC"
/*
* Generate compiler_flags as an array of individual characters. This is a

View File

@ -2,7 +2,7 @@
* WARNING: do not edit!
* Generated by Makefile from include/openssl/opensslconf.h.in
*
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
* Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@ -126,6 +126,11 @@ extern "C" {
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# elif defined(__SUNPRO_C)
# if (__SUNPRO_C >= 0x5130)
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# endif
#endif

View File

@ -60,9 +60,9 @@ our %config = (
openssl_thread_defines => [ "OPENSSL_THREADS" ],
openssldir => "",
options => " no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-heartbeats no-md2 no-msan no-rc5 no-sctp no-shared no-ssl-trace no-ssl3 no-ssl3-method no-ubsan no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
perl_archname => "x86_64-linux-gnu-thread-multi",
perl_archname => "x86_64-linux-thread-multi",
perl_cmd => "/usr/bin/perl",
perl_version => "5.28.1",
perl_version => "5.32.0",
perlargv => [ "no-comp", "no-shared", "no-afalgeng", "darwin64-x86_64-cc" ],
perlenv => {
"AR" => undef,
@ -111,8 +111,8 @@ our %config = (
sourcedir => ".",
target => "darwin64-x86_64-cc",
tdirs => [ "ossl_shim" ],
version => "1.1.1g",
version_num => "0x1010107fL",
version => "1.1.1i",
version_num => "0x1010109fL",
);
our %target = (
@ -1174,6 +1174,11 @@ our %unified_info = (
"libssl",
"test/libtestutil.a",
],
"test/cmactest" =>
[
"libcrypto.a",
"test/libtestutil.a",
],
"test/cmsapitest" =>
[
"libcrypto",
@ -9059,6 +9064,11 @@ our %unified_info = (
[
"include",
],
"test/cmactest.o" =>
[
"include",
"apps/include",
],
"test/cmsapitest.o" =>
[
"include",
@ -9636,6 +9646,7 @@ our %unified_info = (
"test/cipherlist_test",
"test/ciphername_test",
"test/clienthellotest",
"test/cmactest",
"test/cmsapitest",
"test/conf_include_test",
"test/constant_time_test",
@ -14406,6 +14417,14 @@ our %unified_info = (
[
"test/clienthellotest.c",
],
"test/cmactest" =>
[
"test/cmactest.o",
],
"test/cmactest.o" =>
[
"test/cmactest.c",
],
"test/cmsapitest" =>
[
"test/cmsapitest.o",

View File

@ -3020,3 +3020,4 @@ L$aesenclast14:
movd %xmm9,16(%r9)
.byte 0xf3,0xc3

View File

@ -4432,3 +4432,4 @@ L$aesenclast4:
movdqu %xmm2,16(%r9)
.byte 0xf3,0xc3

View File

@ -11,7 +11,7 @@
*/
#define PLATFORM "platform: darwin64-x86_64-cc"
#define DATE "built on: Tue Apr 21 23:17:14 2020 UTC"
#define DATE "built on: Wed Dec 16 14:13:05 2020 UTC"
/*
* Generate compiler_flags as an array of individual characters. This is a

View File

@ -3551,3 +3551,4 @@ L$done_dec:
movq %rdx,%rax
.byte 0xf3,0xc3

View File

@ -479,3 +479,4 @@ L$done_rdseed_bytes:
xorq %r10,%r10
.byte 0xf3,0xc3

View File

@ -2,7 +2,7 @@
* WARNING: do not edit!
* Generated by Makefile from include/openssl/opensslconf.h.in
*
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
* Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@ -123,6 +123,11 @@ extern "C" {
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# elif defined(__SUNPRO_C)
# if (__SUNPRO_C >= 0x5130)
# undef DECLARE_DEPRECATED
# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated));
# endif
# endif
#endif

View File

@ -60,9 +60,9 @@ our %config = (
openssl_thread_defines => [ "OPENSSL_THREADS" ],
openssldir => "",
options => " no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-devcryptoeng no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-heartbeats no-md2 no-msan no-rc5 no-sctp no-shared no-ssl-trace no-ssl3 no-ssl3-method no-ubsan no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
perl_archname => "x86_64-linux-gnu-thread-multi",
perl_archname => "x86_64-linux-thread-multi",
perl_cmd => "/usr/bin/perl",
perl_version => "5.28.1",
perl_version => "5.32.0",
perlargv => [ "no-comp", "no-shared", "no-afalgeng", "darwin64-x86_64-cc" ],
perlenv => {
"AR" => undef,
@ -111,8 +111,8 @@ our %config = (
sourcedir => ".",
target => "darwin64-x86_64-cc",
tdirs => [ "ossl_shim" ],
version => "1.1.1g",
version_num => "0x1010107fL",
version => "1.1.1i",
version_num => "0x1010109fL",
);
our %target = (
@ -1174,6 +1174,11 @@ our %unified_info = (
"libssl",
"test/libtestutil.a",
],
"test/cmactest" =>
[
"libcrypto.a",
"test/libtestutil.a",
],
"test/cmsapitest" =>
[
"libcrypto",
@ -9059,6 +9064,11 @@ our %unified_info = (
[
"include",
],
"test/cmactest.o" =>
[
"include",
"apps/include",
],
"test/cmsapitest.o" =>
[
"include",
@ -9636,6 +9646,7 @@ our %unified_info = (
"test/cipherlist_test",
"test/ciphername_test",
"test/clienthellotest",
"test/cmactest",
"test/cmsapitest",
"test/conf_include_test",
"test/constant_time_test",
@ -14406,6 +14417,14 @@ our %unified_info = (
[
"test/clienthellotest.c",
],
"test/cmactest" =>
[
"test/cmactest.o",
],
"test/cmactest.o" =>
[
"test/cmactest.c",
],
"test/cmsapitest" =>
[
"test/cmsapitest.o",

View File

@ -3020,3 +3020,4 @@ L$aesenclast14:
movd %xmm9,16(%r9)
.byte 0xf3,0xc3

View File

@ -4432,3 +4432,4 @@ L$aesenclast4:
movdqu %xmm2,16(%r9)
.byte 0xf3,0xc3

View File

@ -11,7 +11,7 @@
*/
#define PLATFORM "platform: darwin64-x86_64-cc"
#define DATE "built on: Tue Apr 21 23:17:24 2020 UTC"
#define DATE "built on: Wed Dec 16 14:13:13 2020 UTC"
/*
* Generate compiler_flags as an array of individual characters. This is a

Some files were not shown because too many files have changed in this diff Show More