deps: update archs files for OpenSSL-1.1.1

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/crypto/include/internal/bn_conf.h
    $ git add deps/openssl/openssl/crypto/include/internal/dso_conf.h
    $ git add deps/openssl/openssl/include/openssl/opensslconf.h
    $ git commit

PR-URL: https://github.com/nodejs/node/pull/29550
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
This commit is contained in:
Sam Roberts 2019-09-13 09:16:08 -07:00
parent 17d1d16441
commit 1ca1e0163e
197 changed files with 34083 additions and 2104 deletions

View File

@ -48,7 +48,7 @@ our %config = (
export_var_as_fn => "0", export_var_as_fn => "0",
includes => [ ], includes => [ ],
lflags => [ ], lflags => [ ],
lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_BN_ASM_PART_WORDS", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "RC4_ASM", "MD5_ASM", "RMD160_ASM", "AES_ASM", "VPAES_ASM", "WHIRLPOOL_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "POLY1305_ASM" ], lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_BN_ASM_PART_WORDS", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "RC4_ASM", "MD5_ASM", "RMD160_ASM", "VPAES_ASM", "WHIRLPOOL_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "POLY1305_ASM" ],
libdir => "", libdir => "",
major => "1", major => "1",
makedepprog => "\$(CROSS_COMPILE)gcc", makedepprog => "\$(CROSS_COMPILE)gcc",
@ -111,8 +111,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "BSD-x86", target => "BSD-x86",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -124,8 +124,8 @@ our %target = (
RANLIB => "ranlib", RANLIB => "ranlib",
RC => "windres", RC => "windres",
_conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ], _conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ],
aes_asm_src => "aes-586.s vpaes-x86.s aesni-x86.s", aes_asm_src => "aes_core.c aes_cbc.c vpaes-x86.s aesni-x86.s",
aes_obj => "aes-586.o vpaes-x86.o aesni-x86.o", aes_obj => "aes_core.o aes_cbc.o vpaes-x86.o aesni-x86.o",
apps_aux_src => "", apps_aux_src => "",
apps_init_src => "", apps_init_src => "",
apps_obj => "", apps_obj => "",
@ -1683,8 +1683,9 @@ our %unified_info = (
{ {
"deps" => "deps" =>
[ [
"crypto/aes/aes-586.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -3226,6 +3227,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -4839,12 +4841,6 @@ our %unified_info = (
"include", "include",
"apps", "apps",
], ],
"crypto/aes/aes-586.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes-armv4.o" => "crypto/aes/aes-armv4.o" =>
[ [
"crypto", "crypto",
@ -4861,12 +4857,24 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/aes/aes_cbc.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes_cfb.o" => "crypto/aes/aes_cfb.o" =>
[ [
".", ".",
"crypto/include", "crypto/include",
"include", "include",
], ],
"crypto/aes/aes_core.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
".", ".",
@ -9985,6 +9993,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -10618,14 +10630,18 @@ our %unified_info = (
[ [
"apps/x509.c", "apps/x509.c",
], ],
"crypto/aes/aes-586.o" => "crypto/aes/aes_cbc.o" =>
[ [
"crypto/aes/aes-586.s", "crypto/aes/aes_cbc.c",
], ],
"crypto/aes/aes_cfb.o" => "crypto/aes/aes_cfb.o" =>
[ [
"crypto/aes/aes_cfb.c", "crypto/aes/aes_cfb.c",
], ],
"crypto/aes/aes_core.o" =>
[
"crypto/aes/aes_core.c",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
"crypto/aes/aes_ecb.c", "crypto/aes/aes_ecb.c",
@ -13319,8 +13335,9 @@ our %unified_info = (
], ],
"libcrypto" => "libcrypto" =>
[ [
"crypto/aes/aes-586.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -15223,6 +15240,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15568,6 +15586,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: BSD-x86" #define PLATFORM "platform: BSD-x86"
#define DATE "built on: Mon Jul 22 14:54:03 2019 UTC" #define DATE "built on: Fri Sep 13 15:57:16 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a
@ -36,13 +36,12 @@ static const char compiler_flags[] = {
'M',' ','-','D','S','H','A','2','5','6','_','A','S','M',' ','-', 'M',' ','-','D','S','H','A','2','5','6','_','A','S','M',' ','-',
'D','S','H','A','5','1','2','_','A','S','M',' ','-','D','R','C', 'D','S','H','A','5','1','2','_','A','S','M',' ','-','D','R','C',
'4','_','A','S','M',' ','-','D','M','D','5','_','A','S','M',' ', '4','_','A','S','M',' ','-','D','M','D','5','_','A','S','M',' ',
'-','D','R','M','D','1','6','0','_','A','S','M',' ','-','D','A', '-','D','R','M','D','1','6','0','_','A','S','M',' ','-','D','V',
'E','S','_','A','S','M',' ','-','D','V','P','A','E','S','_','A', 'P','A','E','S','_','A','S','M',' ','-','D','W','H','I','R','L',
'S','M',' ','-','D','W','H','I','R','L','P','O','O','L','_','A', 'P','O','O','L','_','A','S','M',' ','-','D','G','H','A','S','H',
'S','M',' ','-','D','G','H','A','S','H','_','A','S','M',' ','-', '_','A','S','M',' ','-','D','E','C','P','_','N','I','S','T','Z',
'D','E','C','P','_','N','I','S','T','Z','2','5','6','_','A','S', '2','5','6','_','A','S','M',' ','-','D','P','O','L','Y','1','3',
'M',' ','-','D','P','O','L','Y','1','3','0','5','_','A','S','M', '0','5','_','A','S','M',' ','-','D','_','T','H','R','E','A','D',
' ','-','D','_','T','H','R','E','A','D','_','S','A','F','E',' ', '_','S','A','F','E',' ','-','D','_','R','E','E','N','T','R','A',
'-','D','_','R','E','E','N','T','R','A','N','T',' ','-','D','N', 'N','T',' ','-','D','N','D','E','B','U','G','\0'
'D','E','B','U','G','\0'
}; };

View File

@ -15,7 +15,6 @@
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'RMD160_ASM', 'RMD160_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'WHIRLPOOL_ASM', 'WHIRLPOOL_ASM',
'GHASH_ASM', 'GHASH_ASM',

View File

@ -45,7 +45,9 @@
'openssl/ssl/t1_trce.c', 'openssl/ssl/t1_trce.c',
'openssl/ssl/tls13_enc.c', 'openssl/ssl/tls13_enc.c',
'openssl/ssl/tls_srp.c', 'openssl/ssl/tls_srp.c',
'openssl/crypto/aes/aes_cbc.c',
'openssl/crypto/aes/aes_cfb.c', 'openssl/crypto/aes/aes_cfb.c',
'openssl/crypto/aes/aes_core.c',
'openssl/crypto/aes/aes_ecb.c', 'openssl/crypto/aes/aes_ecb.c',
'openssl/crypto/aes/aes_ige.c', 'openssl/crypto/aes/aes_ige.c',
'openssl/crypto/aes/aes_misc.c', 'openssl/crypto/aes/aes_misc.c',
@ -672,7 +674,6 @@
'openssl/engines/e_padlock.c', 'openssl/engines/e_padlock.c',
], ],
'openssl_sources_BSD-x86': [ 'openssl_sources_BSD-x86': [
'./config/archs/BSD-x86/asm/crypto/aes/aes-586.s',
'./config/archs/BSD-x86/asm/crypto/aes/aesni-x86.s', './config/archs/BSD-x86/asm/crypto/aes/aesni-x86.s',
'./config/archs/BSD-x86/asm/crypto/aes/vpaes-x86.s', './config/archs/BSD-x86/asm/crypto/aes/vpaes-x86.s',
'./config/archs/BSD-x86/asm/crypto/bf/bf-586.s', './config/archs/BSD-x86/asm/crypto/bf/bf-586.s',
@ -712,7 +713,6 @@
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'RMD160_ASM', 'RMD160_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'WHIRLPOOL_ASM', 'WHIRLPOOL_ASM',
'GHASH_ASM', 'GHASH_ASM',

View File

@ -48,7 +48,7 @@ our %config = (
export_var_as_fn => "0", export_var_as_fn => "0",
includes => [ ], includes => [ ],
lflags => [ ], lflags => [ ],
lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_BN_ASM_PART_WORDS", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "RC4_ASM", "MD5_ASM", "RMD160_ASM", "AES_ASM", "VPAES_ASM", "WHIRLPOOL_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "POLY1305_ASM" ], lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_BN_ASM_PART_WORDS", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "RC4_ASM", "MD5_ASM", "RMD160_ASM", "VPAES_ASM", "WHIRLPOOL_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "POLY1305_ASM" ],
libdir => "", libdir => "",
major => "1", major => "1",
makedepprog => "\$(CROSS_COMPILE)../config/fake_gcc.pl", makedepprog => "\$(CROSS_COMPILE)../config/fake_gcc.pl",
@ -111,8 +111,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "BSD-x86", target => "BSD-x86",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -124,8 +124,8 @@ our %target = (
RANLIB => "ranlib", RANLIB => "ranlib",
RC => "windres", RC => "windres",
_conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ], _conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ],
aes_asm_src => "aes-586.s vpaes-x86.s aesni-x86.s", aes_asm_src => "aes_core.c aes_cbc.c vpaes-x86.s aesni-x86.s",
aes_obj => "aes-586.o vpaes-x86.o aesni-x86.o", aes_obj => "aes_core.o aes_cbc.o vpaes-x86.o aesni-x86.o",
apps_aux_src => "", apps_aux_src => "",
apps_init_src => "", apps_init_src => "",
apps_obj => "", apps_obj => "",
@ -1683,8 +1683,9 @@ our %unified_info = (
{ {
"deps" => "deps" =>
[ [
"crypto/aes/aes-586.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -3226,6 +3227,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -4839,12 +4841,6 @@ our %unified_info = (
"include", "include",
"apps", "apps",
], ],
"crypto/aes/aes-586.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes-armv4.o" => "crypto/aes/aes-armv4.o" =>
[ [
"crypto", "crypto",
@ -4861,12 +4857,24 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/aes/aes_cbc.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes_cfb.o" => "crypto/aes/aes_cfb.o" =>
[ [
".", ".",
"crypto/include", "crypto/include",
"include", "include",
], ],
"crypto/aes/aes_core.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
".", ".",
@ -9985,6 +9993,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -10618,14 +10630,18 @@ our %unified_info = (
[ [
"apps/x509.c", "apps/x509.c",
], ],
"crypto/aes/aes-586.o" => "crypto/aes/aes_cbc.o" =>
[ [
"crypto/aes/aes-586.s", "crypto/aes/aes_cbc.c",
], ],
"crypto/aes/aes_cfb.o" => "crypto/aes/aes_cfb.o" =>
[ [
"crypto/aes/aes_cfb.c", "crypto/aes/aes_cfb.c",
], ],
"crypto/aes/aes_core.o" =>
[
"crypto/aes/aes_core.c",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
"crypto/aes/aes_ecb.c", "crypto/aes/aes_ecb.c",
@ -13319,8 +13335,9 @@ our %unified_info = (
], ],
"libcrypto" => "libcrypto" =>
[ [
"crypto/aes/aes-586.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -15223,6 +15240,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15568,6 +15586,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: BSD-x86" #define PLATFORM "platform: BSD-x86"
#define DATE "built on: Mon Jul 22 14:54:06 2019 UTC" #define DATE "built on: Fri Sep 13 15:57:23 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a
@ -38,12 +38,11 @@ static const char compiler_flags[] = {
' ','-','D','S','H','A','5','1','2','_','A','S','M',' ','-','D', ' ','-','D','S','H','A','5','1','2','_','A','S','M',' ','-','D',
'R','C','4','_','A','S','M',' ','-','D','M','D','5','_','A','S', 'R','C','4','_','A','S','M',' ','-','D','M','D','5','_','A','S',
'M',' ','-','D','R','M','D','1','6','0','_','A','S','M',' ','-', 'M',' ','-','D','R','M','D','1','6','0','_','A','S','M',' ','-',
'D','A','E','S','_','A','S','M',' ','-','D','V','P','A','E','S', 'D','V','P','A','E','S','_','A','S','M',' ','-','D','W','H','I',
'_','A','S','M',' ','-','D','W','H','I','R','L','P','O','O','L', 'R','L','P','O','O','L','_','A','S','M',' ','-','D','G','H','A',
'_','A','S','M',' ','-','D','G','H','A','S','H','_','A','S','M', 'S','H','_','A','S','M',' ','-','D','E','C','P','_','N','I','S',
' ','-','D','E','C','P','_','N','I','S','T','Z','2','5','6','_', 'T','Z','2','5','6','_','A','S','M',' ','-','D','P','O','L','Y',
'A','S','M',' ','-','D','P','O','L','Y','1','3','0','5','_','A', '1','3','0','5','_','A','S','M',' ','-','D','_','T','H','R','E',
'S','M',' ','-','D','_','T','H','R','E','A','D','_','S','A','F', 'A','D','_','S','A','F','E',' ','-','D','_','R','E','E','N','T',
'E',' ','-','D','_','R','E','E','N','T','R','A','N','T',' ','-', 'R','A','N','T',' ','-','D','N','D','E','B','U','G','\0'
'D','N','D','E','B','U','G','\0'
}; };

View File

@ -15,7 +15,6 @@
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'RMD160_ASM', 'RMD160_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'WHIRLPOOL_ASM', 'WHIRLPOOL_ASM',
'GHASH_ASM', 'GHASH_ASM',

View File

@ -45,7 +45,9 @@
'openssl/ssl/t1_trce.c', 'openssl/ssl/t1_trce.c',
'openssl/ssl/tls13_enc.c', 'openssl/ssl/tls13_enc.c',
'openssl/ssl/tls_srp.c', 'openssl/ssl/tls_srp.c',
'openssl/crypto/aes/aes_cbc.c',
'openssl/crypto/aes/aes_cfb.c', 'openssl/crypto/aes/aes_cfb.c',
'openssl/crypto/aes/aes_core.c',
'openssl/crypto/aes/aes_ecb.c', 'openssl/crypto/aes/aes_ecb.c',
'openssl/crypto/aes/aes_ige.c', 'openssl/crypto/aes/aes_ige.c',
'openssl/crypto/aes/aes_misc.c', 'openssl/crypto/aes/aes_misc.c',
@ -672,7 +674,6 @@
'openssl/engines/e_padlock.c', 'openssl/engines/e_padlock.c',
], ],
'openssl_sources_BSD-x86': [ 'openssl_sources_BSD-x86': [
'./config/archs/BSD-x86/asm_avx2/crypto/aes/aes-586.s',
'./config/archs/BSD-x86/asm_avx2/crypto/aes/aesni-x86.s', './config/archs/BSD-x86/asm_avx2/crypto/aes/aesni-x86.s',
'./config/archs/BSD-x86/asm_avx2/crypto/aes/vpaes-x86.s', './config/archs/BSD-x86/asm_avx2/crypto/aes/vpaes-x86.s',
'./config/archs/BSD-x86/asm_avx2/crypto/bf/bf-586.s', './config/archs/BSD-x86/asm_avx2/crypto/bf/bf-586.s',
@ -712,7 +713,6 @@
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'RMD160_ASM', 'RMD160_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'WHIRLPOOL_ASM', 'WHIRLPOOL_ASM',
'GHASH_ASM', 'GHASH_ASM',

View File

@ -110,8 +110,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "BSD-x86", target => "BSD-x86",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -3212,6 +3212,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -9899,6 +9900,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -15077,6 +15082,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15422,6 +15428,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: BSD-x86" #define PLATFORM "platform: BSD-x86"
#define DATE "built on: Mon Jul 22 14:54:09 2019 UTC" #define DATE "built on: Fri Sep 13 15:57:29 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a

View File

@ -48,7 +48,7 @@ our %config = (
export_var_as_fn => "0", export_var_as_fn => "0",
includes => [ ], includes => [ ],
lflags => [ ], lflags => [ ],
lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_MONT5", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "KECCAK1600_ASM", "RC4_ASM", "MD5_ASM", "AES_ASM", "VPAES_ASM", "BSAES_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "X25519_ASM", "POLY1305_ASM" ], lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_MONT5", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "KECCAK1600_ASM", "RC4_ASM", "MD5_ASM", "VPAES_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "X25519_ASM", "POLY1305_ASM" ],
libdir => "", libdir => "",
major => "1", major => "1",
makedepprog => "\$(CROSS_COMPILE)gcc", makedepprog => "\$(CROSS_COMPILE)gcc",
@ -111,8 +111,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "BSD-x86_64", target => "BSD-x86_64",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -124,8 +124,8 @@ our %target = (
RANLIB => "ranlib", RANLIB => "ranlib",
RC => "windres", RC => "windres",
_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" ], _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-x86_64.s vpaes-x86_64.s bsaes-x86_64.s aesni-x86_64.s aesni-sha1-x86_64.s aesni-sha256-x86_64.s aesni-mb-x86_64.s", 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",
aes_obj => "aes-x86_64.o vpaes-x86_64.o bsaes-x86_64.o aesni-x86_64.o aesni-sha1-x86_64.o aesni-sha256-x86_64.o aesni-mb-x86_64.o", aes_obj => "aes_core.o aes_cbc.o vpaes-x86_64.o aesni-x86_64.o aesni-sha1-x86_64.o aesni-sha256-x86_64.o aesni-mb-x86_64.o",
apps_aux_src => "", apps_aux_src => "",
apps_init_src => "", apps_init_src => "",
apps_obj => "", apps_obj => "",
@ -1692,8 +1692,9 @@ our %unified_info = (
{ {
"deps" => "deps" =>
[ [
"crypto/aes/aes-x86_64.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -1703,7 +1704,6 @@ our %unified_info = (
"crypto/aes/aesni-sha1-x86_64.o", "crypto/aes/aesni-sha1-x86_64.o",
"crypto/aes/aesni-sha256-x86_64.o", "crypto/aes/aesni-sha256-x86_64.o",
"crypto/aes/aesni-x86_64.o", "crypto/aes/aesni-x86_64.o",
"crypto/aes/bsaes-x86_64.o",
"crypto/aes/vpaes-x86_64.o", "crypto/aes/vpaes-x86_64.o",
], ],
"products" => "products" =>
@ -3259,6 +3259,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -4900,7 +4901,7 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/aes/aes-x86_64.o" => "crypto/aes/aes_cbc.o" =>
[ [
".", ".",
"crypto/include", "crypto/include",
@ -4912,6 +4913,12 @@ our %unified_info = (
"crypto/include", "crypto/include",
"include", "include",
], ],
"crypto/aes/aes_core.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
".", ".",
@ -4982,12 +4989,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/aes/bsaes-x86_64.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/vpaes-x86_64.o" => "crypto/aes/vpaes-x86_64.o" =>
[ [
".", ".",
@ -7956,10 +7957,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -10100,6 +10097,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -10733,14 +10734,18 @@ our %unified_info = (
[ [
"apps/x509.c", "apps/x509.c",
], ],
"crypto/aes/aes-x86_64.o" => "crypto/aes/aes_cbc.o" =>
[ [
"crypto/aes/aes-x86_64.s", "crypto/aes/aes_cbc.c",
], ],
"crypto/aes/aes_cfb.o" => "crypto/aes/aes_cfb.o" =>
[ [
"crypto/aes/aes_cfb.c", "crypto/aes/aes_cfb.c",
], ],
"crypto/aes/aes_core.o" =>
[
"crypto/aes/aes_core.c",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
"crypto/aes/aes_ecb.c", "crypto/aes/aes_ecb.c",
@ -10777,10 +10782,6 @@ our %unified_info = (
[ [
"crypto/aes/aesni-x86_64.s", "crypto/aes/aesni-x86_64.s",
], ],
"crypto/aes/bsaes-x86_64.o" =>
[
"crypto/aes/bsaes-x86_64.s",
],
"crypto/aes/vpaes-x86_64.o" => "crypto/aes/vpaes-x86_64.o" =>
[ [
"crypto/aes/vpaes-x86_64.s", "crypto/aes/vpaes-x86_64.s",
@ -13478,8 +13479,9 @@ our %unified_info = (
], ],
"libcrypto" => "libcrypto" =>
[ [
"crypto/aes/aes-x86_64.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -13489,7 +13491,6 @@ our %unified_info = (
"crypto/aes/aesni-sha1-x86_64.o", "crypto/aes/aesni-sha1-x86_64.o",
"crypto/aes/aesni-sha256-x86_64.o", "crypto/aes/aesni-sha256-x86_64.o",
"crypto/aes/aesni-x86_64.o", "crypto/aes/aesni-x86_64.o",
"crypto/aes/bsaes-x86_64.o",
"crypto/aes/vpaes-x86_64.o", "crypto/aes/vpaes-x86_64.o",
"crypto/aria/aria.o", "crypto/aria/aria.o",
"crypto/asn1/a_bitstr.o", "crypto/asn1/a_bitstr.o",
@ -15393,6 +15394,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15738,6 +15740,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: BSD-x86_64" #define PLATFORM "platform: BSD-x86_64"
#define DATE "built on: Wed Jun 12 20:53:27 2019 UTC" #define DATE "built on: Fri Sep 13 15:57:33 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a
@ -35,13 +35,12 @@ static const char compiler_flags[] = {
'_','A','S','M',' ','-','D','S','H','A','5','1','2','_','A','S', '_','A','S','M',' ','-','D','S','H','A','5','1','2','_','A','S',
'M',' ','-','D','K','E','C','C','A','K','1','6','0','0','_','A', 'M',' ','-','D','K','E','C','C','A','K','1','6','0','0','_','A',
'S','M',' ','-','D','R','C','4','_','A','S','M',' ','-','D','M', 'S','M',' ','-','D','R','C','4','_','A','S','M',' ','-','D','M',
'D','5','_','A','S','M',' ','-','D','A','E','S','_','A','S','M', 'D','5','_','A','S','M',' ','-','D','V','P','A','E','S','_','A',
' ','-','D','V','P','A','E','S','_','A','S','M',' ','-','D','B', 'S','M',' ','-','D','G','H','A','S','H','_','A','S','M',' ','-',
'S','A','E','S','_','A','S','M',' ','-','D','G','H','A','S','H', 'D','E','C','P','_','N','I','S','T','Z','2','5','6','_','A','S',
'_','A','S','M',' ','-','D','E','C','P','_','N','I','S','T','Z', 'M',' ','-','D','X','2','5','5','1','9','_','A','S','M',' ','-',
'2','5','6','_','A','S','M',' ','-','D','X','2','5','5','1','9', 'D','P','O','L','Y','1','3','0','5','_','A','S','M',' ','-','D',
'_','A','S','M',' ','-','D','P','O','L','Y','1','3','0','5','_', '_','T','H','R','E','A','D','_','S','A','F','E',' ','-','D','_',
'A','S','M',' ','-','D','_','T','H','R','E','A','D','_','S','A', 'R','E','E','N','T','R','A','N','T',' ','-','D','N','D','E','B',
'F','E',' ','-','D','_','R','E','E','N','T','R','A','N','T',' ', 'U','G','\0'
'-','D','N','D','E','B','U','G','\0'
}; };

View File

@ -15,9 +15,7 @@
'KECCAK1600_ASM', 'KECCAK1600_ASM',
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'BSAES_ASM',
'GHASH_ASM', 'GHASH_ASM',
'ECP_NISTZ256_ASM', 'ECP_NISTZ256_ASM',
'X25519_ASM', 'X25519_ASM',

View File

@ -45,7 +45,9 @@
'openssl/ssl/t1_trce.c', 'openssl/ssl/t1_trce.c',
'openssl/ssl/tls13_enc.c', 'openssl/ssl/tls13_enc.c',
'openssl/ssl/tls_srp.c', 'openssl/ssl/tls_srp.c',
'openssl/crypto/aes/aes_cbc.c',
'openssl/crypto/aes/aes_cfb.c', 'openssl/crypto/aes/aes_cfb.c',
'openssl/crypto/aes/aes_core.c',
'openssl/crypto/aes/aes_ecb.c', 'openssl/crypto/aes/aes_ecb.c',
'openssl/crypto/aes/aes_ige.c', 'openssl/crypto/aes/aes_ige.c',
'openssl/crypto/aes/aes_misc.c', 'openssl/crypto/aes/aes_misc.c',
@ -676,12 +678,10 @@
'openssl/engines/e_padlock.c', 'openssl/engines/e_padlock.c',
], ],
'openssl_sources_BSD-x86_64': [ 'openssl_sources_BSD-x86_64': [
'./config/archs/BSD-x86_64/asm/crypto/aes/aes-x86_64.s',
'./config/archs/BSD-x86_64/asm/crypto/aes/aesni-mb-x86_64.s', './config/archs/BSD-x86_64/asm/crypto/aes/aesni-mb-x86_64.s',
'./config/archs/BSD-x86_64/asm/crypto/aes/aesni-sha1-x86_64.s', './config/archs/BSD-x86_64/asm/crypto/aes/aesni-sha1-x86_64.s',
'./config/archs/BSD-x86_64/asm/crypto/aes/aesni-sha256-x86_64.s', './config/archs/BSD-x86_64/asm/crypto/aes/aesni-sha256-x86_64.s',
'./config/archs/BSD-x86_64/asm/crypto/aes/aesni-x86_64.s', './config/archs/BSD-x86_64/asm/crypto/aes/aesni-x86_64.s',
'./config/archs/BSD-x86_64/asm/crypto/aes/bsaes-x86_64.s',
'./config/archs/BSD-x86_64/asm/crypto/aes/vpaes-x86_64.s', './config/archs/BSD-x86_64/asm/crypto/aes/vpaes-x86_64.s',
'./config/archs/BSD-x86_64/asm/crypto/bn/rsaz-avx2.s', './config/archs/BSD-x86_64/asm/crypto/bn/rsaz-avx2.s',
'./config/archs/BSD-x86_64/asm/crypto/bn/rsaz-x86_64.s', './config/archs/BSD-x86_64/asm/crypto/bn/rsaz-x86_64.s',
@ -723,9 +723,7 @@
'KECCAK1600_ASM', 'KECCAK1600_ASM',
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'BSAES_ASM',
'GHASH_ASM', 'GHASH_ASM',
'ECP_NISTZ256_ASM', 'ECP_NISTZ256_ASM',
'X25519_ASM', 'X25519_ASM',

View File

@ -48,7 +48,7 @@ our %config = (
export_var_as_fn => "0", export_var_as_fn => "0",
includes => [ ], includes => [ ],
lflags => [ ], lflags => [ ],
lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_MONT5", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "KECCAK1600_ASM", "RC4_ASM", "MD5_ASM", "AES_ASM", "VPAES_ASM", "BSAES_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "X25519_ASM", "POLY1305_ASM" ], lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_MONT5", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "KECCAK1600_ASM", "RC4_ASM", "MD5_ASM", "VPAES_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "X25519_ASM", "POLY1305_ASM" ],
libdir => "", libdir => "",
major => "1", major => "1",
makedepprog => "\$(CROSS_COMPILE)../config/fake_gcc.pl", makedepprog => "\$(CROSS_COMPILE)../config/fake_gcc.pl",
@ -111,8 +111,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "BSD-x86_64", target => "BSD-x86_64",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -124,8 +124,8 @@ our %target = (
RANLIB => "ranlib", RANLIB => "ranlib",
RC => "windres", RC => "windres",
_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" ], _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-x86_64.s vpaes-x86_64.s bsaes-x86_64.s aesni-x86_64.s aesni-sha1-x86_64.s aesni-sha256-x86_64.s aesni-mb-x86_64.s", 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",
aes_obj => "aes-x86_64.o vpaes-x86_64.o bsaes-x86_64.o aesni-x86_64.o aesni-sha1-x86_64.o aesni-sha256-x86_64.o aesni-mb-x86_64.o", aes_obj => "aes_core.o aes_cbc.o vpaes-x86_64.o aesni-x86_64.o aesni-sha1-x86_64.o aesni-sha256-x86_64.o aesni-mb-x86_64.o",
apps_aux_src => "", apps_aux_src => "",
apps_init_src => "", apps_init_src => "",
apps_obj => "", apps_obj => "",
@ -1692,8 +1692,9 @@ our %unified_info = (
{ {
"deps" => "deps" =>
[ [
"crypto/aes/aes-x86_64.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -1703,7 +1704,6 @@ our %unified_info = (
"crypto/aes/aesni-sha1-x86_64.o", "crypto/aes/aesni-sha1-x86_64.o",
"crypto/aes/aesni-sha256-x86_64.o", "crypto/aes/aesni-sha256-x86_64.o",
"crypto/aes/aesni-x86_64.o", "crypto/aes/aesni-x86_64.o",
"crypto/aes/bsaes-x86_64.o",
"crypto/aes/vpaes-x86_64.o", "crypto/aes/vpaes-x86_64.o",
], ],
"products" => "products" =>
@ -3259,6 +3259,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -4900,7 +4901,7 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/aes/aes-x86_64.o" => "crypto/aes/aes_cbc.o" =>
[ [
".", ".",
"crypto/include", "crypto/include",
@ -4912,6 +4913,12 @@ our %unified_info = (
"crypto/include", "crypto/include",
"include", "include",
], ],
"crypto/aes/aes_core.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
".", ".",
@ -4982,12 +4989,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/aes/bsaes-x86_64.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/vpaes-x86_64.o" => "crypto/aes/vpaes-x86_64.o" =>
[ [
".", ".",
@ -7956,10 +7957,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -10100,6 +10097,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -10733,14 +10734,18 @@ our %unified_info = (
[ [
"apps/x509.c", "apps/x509.c",
], ],
"crypto/aes/aes-x86_64.o" => "crypto/aes/aes_cbc.o" =>
[ [
"crypto/aes/aes-x86_64.s", "crypto/aes/aes_cbc.c",
], ],
"crypto/aes/aes_cfb.o" => "crypto/aes/aes_cfb.o" =>
[ [
"crypto/aes/aes_cfb.c", "crypto/aes/aes_cfb.c",
], ],
"crypto/aes/aes_core.o" =>
[
"crypto/aes/aes_core.c",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
"crypto/aes/aes_ecb.c", "crypto/aes/aes_ecb.c",
@ -10777,10 +10782,6 @@ our %unified_info = (
[ [
"crypto/aes/aesni-x86_64.s", "crypto/aes/aesni-x86_64.s",
], ],
"crypto/aes/bsaes-x86_64.o" =>
[
"crypto/aes/bsaes-x86_64.s",
],
"crypto/aes/vpaes-x86_64.o" => "crypto/aes/vpaes-x86_64.o" =>
[ [
"crypto/aes/vpaes-x86_64.s", "crypto/aes/vpaes-x86_64.s",
@ -13478,8 +13479,9 @@ our %unified_info = (
], ],
"libcrypto" => "libcrypto" =>
[ [
"crypto/aes/aes-x86_64.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -13489,7 +13491,6 @@ our %unified_info = (
"crypto/aes/aesni-sha1-x86_64.o", "crypto/aes/aesni-sha1-x86_64.o",
"crypto/aes/aesni-sha256-x86_64.o", "crypto/aes/aesni-sha256-x86_64.o",
"crypto/aes/aesni-x86_64.o", "crypto/aes/aesni-x86_64.o",
"crypto/aes/bsaes-x86_64.o",
"crypto/aes/vpaes-x86_64.o", "crypto/aes/vpaes-x86_64.o",
"crypto/aria/aria.o", "crypto/aria/aria.o",
"crypto/asn1/a_bitstr.o", "crypto/asn1/a_bitstr.o",
@ -15393,6 +15394,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15738,6 +15740,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: BSD-x86_64" #define PLATFORM "platform: BSD-x86_64"
#define DATE "built on: Wed Jun 12 20:53:36 2019 UTC" #define DATE "built on: Fri Sep 13 15:57:48 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a
@ -36,13 +36,12 @@ static const char compiler_flags[] = {
'5','6','_','A','S','M',' ','-','D','S','H','A','5','1','2','_', '5','6','_','A','S','M',' ','-','D','S','H','A','5','1','2','_',
'A','S','M',' ','-','D','K','E','C','C','A','K','1','6','0','0', 'A','S','M',' ','-','D','K','E','C','C','A','K','1','6','0','0',
'_','A','S','M',' ','-','D','R','C','4','_','A','S','M',' ','-', '_','A','S','M',' ','-','D','R','C','4','_','A','S','M',' ','-',
'D','M','D','5','_','A','S','M',' ','-','D','A','E','S','_','A', 'D','M','D','5','_','A','S','M',' ','-','D','V','P','A','E','S',
'S','M',' ','-','D','V','P','A','E','S','_','A','S','M',' ','-', '_','A','S','M',' ','-','D','G','H','A','S','H','_','A','S','M',
'D','B','S','A','E','S','_','A','S','M',' ','-','D','G','H','A', ' ','-','D','E','C','P','_','N','I','S','T','Z','2','5','6','_',
'S','H','_','A','S','M',' ','-','D','E','C','P','_','N','I','S', 'A','S','M',' ','-','D','X','2','5','5','1','9','_','A','S','M',
'T','Z','2','5','6','_','A','S','M',' ','-','D','X','2','5','5', ' ','-','D','P','O','L','Y','1','3','0','5','_','A','S','M',' ',
'1','9','_','A','S','M',' ','-','D','P','O','L','Y','1','3','0', '-','D','_','T','H','R','E','A','D','_','S','A','F','E',' ','-',
'5','_','A','S','M',' ','-','D','_','T','H','R','E','A','D','_', 'D','_','R','E','E','N','T','R','A','N','T',' ','-','D','N','D',
'S','A','F','E',' ','-','D','_','R','E','E','N','T','R','A','N', 'E','B','U','G','\0'
'T',' ','-','D','N','D','E','B','U','G','\0'
}; };

View File

@ -15,9 +15,7 @@
'KECCAK1600_ASM', 'KECCAK1600_ASM',
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'BSAES_ASM',
'GHASH_ASM', 'GHASH_ASM',
'ECP_NISTZ256_ASM', 'ECP_NISTZ256_ASM',
'X25519_ASM', 'X25519_ASM',

View File

@ -45,7 +45,9 @@
'openssl/ssl/t1_trce.c', 'openssl/ssl/t1_trce.c',
'openssl/ssl/tls13_enc.c', 'openssl/ssl/tls13_enc.c',
'openssl/ssl/tls_srp.c', 'openssl/ssl/tls_srp.c',
'openssl/crypto/aes/aes_cbc.c',
'openssl/crypto/aes/aes_cfb.c', 'openssl/crypto/aes/aes_cfb.c',
'openssl/crypto/aes/aes_core.c',
'openssl/crypto/aes/aes_ecb.c', 'openssl/crypto/aes/aes_ecb.c',
'openssl/crypto/aes/aes_ige.c', 'openssl/crypto/aes/aes_ige.c',
'openssl/crypto/aes/aes_misc.c', 'openssl/crypto/aes/aes_misc.c',
@ -676,12 +678,10 @@
'openssl/engines/e_padlock.c', 'openssl/engines/e_padlock.c',
], ],
'openssl_sources_BSD-x86_64': [ 'openssl_sources_BSD-x86_64': [
'./config/archs/BSD-x86_64/asm_avx2/crypto/aes/aes-x86_64.s',
'./config/archs/BSD-x86_64/asm_avx2/crypto/aes/aesni-mb-x86_64.s', './config/archs/BSD-x86_64/asm_avx2/crypto/aes/aesni-mb-x86_64.s',
'./config/archs/BSD-x86_64/asm_avx2/crypto/aes/aesni-sha1-x86_64.s', './config/archs/BSD-x86_64/asm_avx2/crypto/aes/aesni-sha1-x86_64.s',
'./config/archs/BSD-x86_64/asm_avx2/crypto/aes/aesni-sha256-x86_64.s', './config/archs/BSD-x86_64/asm_avx2/crypto/aes/aesni-sha256-x86_64.s',
'./config/archs/BSD-x86_64/asm_avx2/crypto/aes/aesni-x86_64.s', './config/archs/BSD-x86_64/asm_avx2/crypto/aes/aesni-x86_64.s',
'./config/archs/BSD-x86_64/asm_avx2/crypto/aes/bsaes-x86_64.s',
'./config/archs/BSD-x86_64/asm_avx2/crypto/aes/vpaes-x86_64.s', './config/archs/BSD-x86_64/asm_avx2/crypto/aes/vpaes-x86_64.s',
'./config/archs/BSD-x86_64/asm_avx2/crypto/bn/rsaz-avx2.s', './config/archs/BSD-x86_64/asm_avx2/crypto/bn/rsaz-avx2.s',
'./config/archs/BSD-x86_64/asm_avx2/crypto/bn/rsaz-x86_64.s', './config/archs/BSD-x86_64/asm_avx2/crypto/bn/rsaz-x86_64.s',
@ -723,9 +723,7 @@
'KECCAK1600_ASM', 'KECCAK1600_ASM',
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'BSAES_ASM',
'GHASH_ASM', 'GHASH_ASM',
'ECP_NISTZ256_ASM', 'ECP_NISTZ256_ASM',
'X25519_ASM', 'X25519_ASM',

View File

@ -110,8 +110,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "BSD-x86_64", target => "BSD-x86_64",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -3221,6 +3221,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -7828,10 +7829,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -9924,6 +9921,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -15102,6 +15103,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15447,6 +15449,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: BSD-x86_64" #define PLATFORM "platform: BSD-x86_64"
#define DATE "built on: Wed Jun 12 20:53:45 2019 UTC" #define DATE "built on: Fri Sep 13 15:58:03 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a

View File

@ -53,7 +53,7 @@ our %config = (
export_var_as_fn => "1", export_var_as_fn => "1",
includes => [ ], includes => [ ],
lflags => [ ], lflags => [ ],
lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_BN_ASM_PART_WORDS", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "RC4_ASM", "MD5_ASM", "RMD160_ASM", "AES_ASM", "VPAES_ASM", "WHIRLPOOL_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "POLY1305_ASM" ], lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_BN_ASM_PART_WORDS", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "RC4_ASM", "MD5_ASM", "RMD160_ASM", "VPAES_ASM", "WHIRLPOOL_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "POLY1305_ASM" ],
libdir => "", libdir => "",
major => "1", major => "1",
minor => "1.1", minor => "1.1",
@ -115,8 +115,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "VC-WIN32", target => "VC-WIN32",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -132,11 +132,11 @@ our %target = (
LDFLAGS => "/nologo /debug", LDFLAGS => "/nologo /debug",
MT => "mt", MT => "mt",
MTFLAGS => "-nologo", MTFLAGS => "-nologo",
RANLIB => "CODE(0x557a75a28f28)", RANLIB => "CODE(0x56535777ac98)",
RC => "rc", 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" ], _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-586.s vpaes-x86.s aesni-x86.s", aes_asm_src => "aes_core.c aes_cbc.c vpaes-x86.s aesni-x86.s",
aes_obj => "aes-586.o vpaes-x86.o aesni-x86.o", aes_obj => "aes_core.o aes_cbc.o vpaes-x86.o aesni-x86.o",
apps_aux_src => "win32_init.c", apps_aux_src => "win32_init.c",
apps_init_src => "", apps_init_src => "",
apps_obj => "win32_init.o", apps_obj => "win32_init.o",
@ -1714,8 +1714,9 @@ our %unified_info = (
{ {
"deps" => "deps" =>
[ [
"crypto/aes/aes-586.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -3256,6 +3257,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -4891,12 +4893,6 @@ our %unified_info = (
"include", "include",
"apps", "apps",
], ],
"crypto/aes/aes-586.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes-armv4.o" => "crypto/aes/aes-armv4.o" =>
[ [
"crypto", "crypto",
@ -4913,12 +4909,24 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/aes/aes_cbc.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes_cfb.o" => "crypto/aes/aes_cfb.o" =>
[ [
".", ".",
"crypto/include", "crypto/include",
"include", "include",
], ],
"crypto/aes/aes_core.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
".", ".",
@ -7897,10 +7905,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -10035,6 +10039,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -10646,14 +10654,18 @@ our %unified_info = (
[ [
"apps/x509.c", "apps/x509.c",
], ],
"crypto/aes/aes-586.o" => "crypto/aes/aes_cbc.o" =>
[ [
"crypto/aes/aes-586.s", "crypto/aes/aes_cbc.c",
], ],
"crypto/aes/aes_cfb.o" => "crypto/aes/aes_cfb.o" =>
[ [
"crypto/aes/aes_cfb.c", "crypto/aes/aes_cfb.c",
], ],
"crypto/aes/aes_core.o" =>
[
"crypto/aes/aes_core.c",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
"crypto/aes/aes_ecb.c", "crypto/aes/aes_ecb.c",
@ -13343,8 +13355,9 @@ our %unified_info = (
], ],
"libcrypto" => "libcrypto" =>
[ [
"crypto/aes/aes-586.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -15246,6 +15259,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15591,6 +15605,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: " #define PLATFORM "platform: "
#define DATE "built on: Wed Jun 12 20:57:03 2019 UTC" #define DATE "built on: Fri Sep 13 16:03:33 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a

View File

@ -20,7 +20,6 @@
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'RMD160_ASM', 'RMD160_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'WHIRLPOOL_ASM', 'WHIRLPOOL_ASM',
'GHASH_ASM', 'GHASH_ASM',

View File

@ -45,7 +45,9 @@
'openssl/ssl/t1_trce.c', 'openssl/ssl/t1_trce.c',
'openssl/ssl/tls13_enc.c', 'openssl/ssl/tls13_enc.c',
'openssl/ssl/tls_srp.c', 'openssl/ssl/tls_srp.c',
'openssl/crypto/aes/aes_cbc.c',
'openssl/crypto/aes/aes_cfb.c', 'openssl/crypto/aes/aes_cfb.c',
'openssl/crypto/aes/aes_core.c',
'openssl/crypto/aes/aes_ecb.c', 'openssl/crypto/aes/aes_ecb.c',
'openssl/crypto/aes/aes_ige.c', 'openssl/crypto/aes/aes_ige.c',
'openssl/crypto/aes/aes_misc.c', 'openssl/crypto/aes/aes_misc.c',
@ -671,7 +673,6 @@
'openssl/engines/e_padlock.c', 'openssl/engines/e_padlock.c',
], ],
'openssl_sources_VC-WIN32': [ 'openssl_sources_VC-WIN32': [
'./config/archs/VC-WIN32/asm/crypto/aes/aes-586.asm',
'./config/archs/VC-WIN32/asm/crypto/aes/aesni-x86.asm', './config/archs/VC-WIN32/asm/crypto/aes/aesni-x86.asm',
'./config/archs/VC-WIN32/asm/crypto/aes/vpaes-x86.asm', './config/archs/VC-WIN32/asm/crypto/aes/vpaes-x86.asm',
'./config/archs/VC-WIN32/asm/crypto/bf/bf-586.asm', './config/archs/VC-WIN32/asm/crypto/bf/bf-586.asm',
@ -716,7 +717,6 @@
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'RMD160_ASM', 'RMD160_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'WHIRLPOOL_ASM', 'WHIRLPOOL_ASM',
'GHASH_ASM', 'GHASH_ASM',

View File

@ -53,7 +53,7 @@ our %config = (
export_var_as_fn => "1", export_var_as_fn => "1",
includes => [ ], includes => [ ],
lflags => [ ], lflags => [ ],
lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_BN_ASM_PART_WORDS", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "RC4_ASM", "MD5_ASM", "RMD160_ASM", "AES_ASM", "VPAES_ASM", "WHIRLPOOL_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "POLY1305_ASM" ], lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_BN_ASM_PART_WORDS", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "RC4_ASM", "MD5_ASM", "RMD160_ASM", "VPAES_ASM", "WHIRLPOOL_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "POLY1305_ASM" ],
libdir => "", libdir => "",
major => "1", major => "1",
minor => "1.1", minor => "1.1",
@ -115,8 +115,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "VC-WIN32", target => "VC-WIN32",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -132,11 +132,11 @@ our %target = (
LDFLAGS => "/nologo /debug", LDFLAGS => "/nologo /debug",
MT => "mt", MT => "mt",
MTFLAGS => "-nologo", MTFLAGS => "-nologo",
RANLIB => "CODE(0x558cc0187db8)", RANLIB => "CODE(0x55a934dbe798)",
RC => "rc", 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" ], _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-586.s vpaes-x86.s aesni-x86.s", aes_asm_src => "aes_core.c aes_cbc.c vpaes-x86.s aesni-x86.s",
aes_obj => "aes-586.o vpaes-x86.o aesni-x86.o", aes_obj => "aes_core.o aes_cbc.o vpaes-x86.o aesni-x86.o",
apps_aux_src => "win32_init.c", apps_aux_src => "win32_init.c",
apps_init_src => "", apps_init_src => "",
apps_obj => "win32_init.o", apps_obj => "win32_init.o",
@ -1714,8 +1714,9 @@ our %unified_info = (
{ {
"deps" => "deps" =>
[ [
"crypto/aes/aes-586.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -3256,6 +3257,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -4891,12 +4893,6 @@ our %unified_info = (
"include", "include",
"apps", "apps",
], ],
"crypto/aes/aes-586.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes-armv4.o" => "crypto/aes/aes-armv4.o" =>
[ [
"crypto", "crypto",
@ -4913,12 +4909,24 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/aes/aes_cbc.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes_cfb.o" => "crypto/aes/aes_cfb.o" =>
[ [
".", ".",
"crypto/include", "crypto/include",
"include", "include",
], ],
"crypto/aes/aes_core.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
".", ".",
@ -7897,10 +7905,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -10035,6 +10039,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -10646,14 +10654,18 @@ our %unified_info = (
[ [
"apps/x509.c", "apps/x509.c",
], ],
"crypto/aes/aes-586.o" => "crypto/aes/aes_cbc.o" =>
[ [
"crypto/aes/aes-586.s", "crypto/aes/aes_cbc.c",
], ],
"crypto/aes/aes_cfb.o" => "crypto/aes/aes_cfb.o" =>
[ [
"crypto/aes/aes_cfb.c", "crypto/aes/aes_cfb.c",
], ],
"crypto/aes/aes_core.o" =>
[
"crypto/aes/aes_core.c",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
"crypto/aes/aes_ecb.c", "crypto/aes/aes_ecb.c",
@ -13343,8 +13355,9 @@ our %unified_info = (
], ],
"libcrypto" => "libcrypto" =>
[ [
"crypto/aes/aes-586.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -15246,6 +15259,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15591,6 +15605,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: " #define PLATFORM "platform: "
#define DATE "built on: Wed Jun 12 20:57:08 2019 UTC" #define DATE "built on: Fri Sep 13 16:03:39 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a

View File

@ -20,7 +20,6 @@
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'RMD160_ASM', 'RMD160_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'WHIRLPOOL_ASM', 'WHIRLPOOL_ASM',
'GHASH_ASM', 'GHASH_ASM',

View File

@ -45,7 +45,9 @@
'openssl/ssl/t1_trce.c', 'openssl/ssl/t1_trce.c',
'openssl/ssl/tls13_enc.c', 'openssl/ssl/tls13_enc.c',
'openssl/ssl/tls_srp.c', 'openssl/ssl/tls_srp.c',
'openssl/crypto/aes/aes_cbc.c',
'openssl/crypto/aes/aes_cfb.c', 'openssl/crypto/aes/aes_cfb.c',
'openssl/crypto/aes/aes_core.c',
'openssl/crypto/aes/aes_ecb.c', 'openssl/crypto/aes/aes_ecb.c',
'openssl/crypto/aes/aes_ige.c', 'openssl/crypto/aes/aes_ige.c',
'openssl/crypto/aes/aes_misc.c', 'openssl/crypto/aes/aes_misc.c',
@ -671,7 +673,6 @@
'openssl/engines/e_padlock.c', 'openssl/engines/e_padlock.c',
], ],
'openssl_sources_VC-WIN32': [ 'openssl_sources_VC-WIN32': [
'./config/archs/VC-WIN32/asm_avx2/crypto/aes/aes-586.asm',
'./config/archs/VC-WIN32/asm_avx2/crypto/aes/aesni-x86.asm', './config/archs/VC-WIN32/asm_avx2/crypto/aes/aesni-x86.asm',
'./config/archs/VC-WIN32/asm_avx2/crypto/aes/vpaes-x86.asm', './config/archs/VC-WIN32/asm_avx2/crypto/aes/vpaes-x86.asm',
'./config/archs/VC-WIN32/asm_avx2/crypto/bf/bf-586.asm', './config/archs/VC-WIN32/asm_avx2/crypto/bf/bf-586.asm',
@ -716,7 +717,6 @@
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'RMD160_ASM', 'RMD160_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'WHIRLPOOL_ASM', 'WHIRLPOOL_ASM',
'GHASH_ASM', 'GHASH_ASM',

View File

@ -114,8 +114,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "VC-WIN32", target => "VC-WIN32",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -131,7 +131,7 @@ our %target = (
LDFLAGS => "/nologo /debug", LDFLAGS => "/nologo /debug",
MT => "mt", MT => "mt",
MTFLAGS => "-nologo", MTFLAGS => "-nologo",
RANLIB => "CODE(0x55bca9ad89d8)", RANLIB => "CODE(0x55ddfff979c8)",
RC => "rc", 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" ], _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", aes_asm_src => "aes_core.c aes_cbc.c",
@ -3242,6 +3242,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -7853,10 +7854,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -9949,6 +9946,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -15100,6 +15101,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15445,6 +15447,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: " #define PLATFORM "platform: "
#define DATE "built on: Wed Jun 12 20:57:14 2019 UTC" #define DATE "built on: Fri Sep 13 16:03:44 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a

View File

@ -113,8 +113,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "VC-WIN64-ARM", target => "VC-WIN64-ARM",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -128,7 +128,7 @@ our %target = (
LDFLAGS => "/nologo /debug", LDFLAGS => "/nologo /debug",
MT => "mt", MT => "mt",
MTFLAGS => "-nologo", MTFLAGS => "-nologo",
RANLIB => "CODE(0x55648ae1bb98)", RANLIB => "CODE(0x55cd56acf3f8)",
RC => "rc", 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" ], _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", aes_asm_src => "aes_core.c aes_cbc.c",
@ -3236,6 +3236,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -7847,10 +7848,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -9943,6 +9940,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -15094,6 +15095,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15439,6 +15441,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: VC-WIN64-ARM" #define PLATFORM "platform: VC-WIN64-ARM"
#define DATE "built on: Wed Jun 12 20:57:18 2019 UTC" #define DATE "built on: Fri Sep 13 16:03:47 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a

View File

@ -54,7 +54,7 @@ our %config = (
export_var_as_fn => "1", export_var_as_fn => "1",
includes => [ ], includes => [ ],
lflags => [ ], lflags => [ ],
lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_MONT5", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "KECCAK1600_ASM", "RC4_ASM", "MD5_ASM", "AES_ASM", "VPAES_ASM", "BSAES_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "X25519_ASM", "POLY1305_ASM" ], lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_MONT5", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "KECCAK1600_ASM", "RC4_ASM", "MD5_ASM", "VPAES_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "X25519_ASM", "POLY1305_ASM" ],
libdir => "", libdir => "",
major => "1", major => "1",
minor => "1.1", minor => "1.1",
@ -116,8 +116,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "VC-WIN64A", target => "VC-WIN64A",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -133,11 +133,11 @@ our %target = (
LDFLAGS => "/nologo /debug", LDFLAGS => "/nologo /debug",
MT => "mt", MT => "mt",
MTFLAGS => "-nologo", MTFLAGS => "-nologo",
RANLIB => "CODE(0x556a36060c78)", RANLIB => "CODE(0x560295a39668)",
RC => "rc", 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" ], _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-x86_64.s vpaes-x86_64.s bsaes-x86_64.s aesni-x86_64.s aesni-sha1-x86_64.s aesni-sha256-x86_64.s aesni-mb-x86_64.s", 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",
aes_obj => "aes-x86_64.o vpaes-x86_64.o bsaes-x86_64.o aesni-x86_64.o aesni-sha1-x86_64.o aesni-sha256-x86_64.o aesni-mb-x86_64.o", aes_obj => "aes_core.o aes_cbc.o vpaes-x86_64.o aesni-x86_64.o aesni-sha1-x86_64.o aesni-sha256-x86_64.o aesni-mb-x86_64.o",
apps_aux_src => "win32_init.c", apps_aux_src => "win32_init.c",
apps_init_src => "", apps_init_src => "",
apps_obj => "win32_init.o", apps_obj => "win32_init.o",
@ -1716,8 +1716,9 @@ our %unified_info = (
{ {
"deps" => "deps" =>
[ [
"crypto/aes/aes-x86_64.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -1727,7 +1728,6 @@ our %unified_info = (
"crypto/aes/aesni-sha1-x86_64.o", "crypto/aes/aesni-sha1-x86_64.o",
"crypto/aes/aesni-sha256-x86_64.o", "crypto/aes/aesni-sha256-x86_64.o",
"crypto/aes/aesni-x86_64.o", "crypto/aes/aesni-x86_64.o",
"crypto/aes/bsaes-x86_64.o",
"crypto/aes/vpaes-x86_64.o", "crypto/aes/vpaes-x86_64.o",
], ],
"products" => "products" =>
@ -3269,6 +3269,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -4920,7 +4921,7 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/aes/aes-x86_64.o" => "crypto/aes/aes_cbc.o" =>
[ [
".", ".",
"crypto/include", "crypto/include",
@ -4932,6 +4933,12 @@ our %unified_info = (
"crypto/include", "crypto/include",
"include", "include",
], ],
"crypto/aes/aes_core.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
".", ".",
@ -5002,12 +5009,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/aes/bsaes-x86_64.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/vpaes-x86_64.o" => "crypto/aes/vpaes-x86_64.o" =>
[ [
".", ".",
@ -7970,10 +7971,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -10114,6 +10111,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -10725,14 +10726,18 @@ our %unified_info = (
[ [
"apps/x509.c", "apps/x509.c",
], ],
"crypto/aes/aes-x86_64.o" => "crypto/aes/aes_cbc.o" =>
[ [
"crypto/aes/aes-x86_64.s", "crypto/aes/aes_cbc.c",
], ],
"crypto/aes/aes_cfb.o" => "crypto/aes/aes_cfb.o" =>
[ [
"crypto/aes/aes_cfb.c", "crypto/aes/aes_cfb.c",
], ],
"crypto/aes/aes_core.o" =>
[
"crypto/aes/aes_core.c",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
"crypto/aes/aes_ecb.c", "crypto/aes/aes_ecb.c",
@ -10769,10 +10774,6 @@ our %unified_info = (
[ [
"crypto/aes/aesni-x86_64.s", "crypto/aes/aesni-x86_64.s",
], ],
"crypto/aes/bsaes-x86_64.o" =>
[
"crypto/aes/bsaes-x86_64.s",
],
"crypto/aes/vpaes-x86_64.o" => "crypto/aes/vpaes-x86_64.o" =>
[ [
"crypto/aes/vpaes-x86_64.s", "crypto/aes/vpaes-x86_64.s",
@ -13466,8 +13467,9 @@ our %unified_info = (
], ],
"libcrypto" => "libcrypto" =>
[ [
"crypto/aes/aes-x86_64.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -13477,7 +13479,6 @@ our %unified_info = (
"crypto/aes/aesni-sha1-x86_64.o", "crypto/aes/aesni-sha1-x86_64.o",
"crypto/aes/aesni-sha256-x86_64.o", "crypto/aes/aesni-sha256-x86_64.o",
"crypto/aes/aesni-x86_64.o", "crypto/aes/aesni-x86_64.o",
"crypto/aes/bsaes-x86_64.o",
"crypto/aes/vpaes-x86_64.o", "crypto/aes/vpaes-x86_64.o",
"crypto/aria/aria.o", "crypto/aria/aria.o",
"crypto/asn1/a_bitstr.o", "crypto/asn1/a_bitstr.o",
@ -15380,6 +15381,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15725,6 +15727,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: " #define PLATFORM "platform: "
#define DATE "built on: Wed Jun 12 20:56:41 2019 UTC" #define DATE "built on: Fri Sep 13 16:02:58 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a

View File

@ -20,9 +20,7 @@
'KECCAK1600_ASM', 'KECCAK1600_ASM',
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'BSAES_ASM',
'GHASH_ASM', 'GHASH_ASM',
'ECP_NISTZ256_ASM', 'ECP_NISTZ256_ASM',
'X25519_ASM', 'X25519_ASM',

View File

@ -45,7 +45,9 @@
'openssl/ssl/t1_trce.c', 'openssl/ssl/t1_trce.c',
'openssl/ssl/tls13_enc.c', 'openssl/ssl/tls13_enc.c',
'openssl/ssl/tls_srp.c', 'openssl/ssl/tls_srp.c',
'openssl/crypto/aes/aes_cbc.c',
'openssl/crypto/aes/aes_cfb.c', 'openssl/crypto/aes/aes_cfb.c',
'openssl/crypto/aes/aes_core.c',
'openssl/crypto/aes/aes_ecb.c', 'openssl/crypto/aes/aes_ecb.c',
'openssl/crypto/aes/aes_ige.c', 'openssl/crypto/aes/aes_ige.c',
'openssl/crypto/aes/aes_misc.c', 'openssl/crypto/aes/aes_misc.c',
@ -675,12 +677,10 @@
'openssl/engines/e_padlock.c', 'openssl/engines/e_padlock.c',
], ],
'openssl_sources_VC-WIN64A': [ 'openssl_sources_VC-WIN64A': [
'./config/archs/VC-WIN64A/asm/crypto/aes/aes-x86_64.asm',
'./config/archs/VC-WIN64A/asm/crypto/aes/aesni-mb-x86_64.asm', './config/archs/VC-WIN64A/asm/crypto/aes/aesni-mb-x86_64.asm',
'./config/archs/VC-WIN64A/asm/crypto/aes/aesni-sha1-x86_64.asm', './config/archs/VC-WIN64A/asm/crypto/aes/aesni-sha1-x86_64.asm',
'./config/archs/VC-WIN64A/asm/crypto/aes/aesni-sha256-x86_64.asm', './config/archs/VC-WIN64A/asm/crypto/aes/aesni-sha256-x86_64.asm',
'./config/archs/VC-WIN64A/asm/crypto/aes/aesni-x86_64.asm', './config/archs/VC-WIN64A/asm/crypto/aes/aesni-x86_64.asm',
'./config/archs/VC-WIN64A/asm/crypto/aes/bsaes-x86_64.asm',
'./config/archs/VC-WIN64A/asm/crypto/aes/vpaes-x86_64.asm', './config/archs/VC-WIN64A/asm/crypto/aes/vpaes-x86_64.asm',
'./config/archs/VC-WIN64A/asm/crypto/bn/rsaz-avx2.asm', './config/archs/VC-WIN64A/asm/crypto/bn/rsaz-avx2.asm',
'./config/archs/VC-WIN64A/asm/crypto/bn/rsaz-x86_64.asm', './config/archs/VC-WIN64A/asm/crypto/bn/rsaz-x86_64.asm',
@ -727,9 +727,7 @@
'KECCAK1600_ASM', 'KECCAK1600_ASM',
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'BSAES_ASM',
'GHASH_ASM', 'GHASH_ASM',
'ECP_NISTZ256_ASM', 'ECP_NISTZ256_ASM',
'X25519_ASM', 'X25519_ASM',

View File

@ -54,7 +54,7 @@ our %config = (
export_var_as_fn => "1", export_var_as_fn => "1",
includes => [ ], includes => [ ],
lflags => [ ], lflags => [ ],
lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_MONT5", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "KECCAK1600_ASM", "RC4_ASM", "MD5_ASM", "AES_ASM", "VPAES_ASM", "BSAES_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "X25519_ASM", "POLY1305_ASM" ], lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_MONT5", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "KECCAK1600_ASM", "RC4_ASM", "MD5_ASM", "VPAES_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "X25519_ASM", "POLY1305_ASM" ],
libdir => "", libdir => "",
major => "1", major => "1",
minor => "1.1", minor => "1.1",
@ -116,8 +116,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "VC-WIN64A", target => "VC-WIN64A",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -133,11 +133,11 @@ our %target = (
LDFLAGS => "/nologo /debug", LDFLAGS => "/nologo /debug",
MT => "mt", MT => "mt",
MTFLAGS => "-nologo", MTFLAGS => "-nologo",
RANLIB => "CODE(0x555ae63ae078)", RANLIB => "CODE(0x562305dbe5d8)",
RC => "rc", 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" ], _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-x86_64.s vpaes-x86_64.s bsaes-x86_64.s aesni-x86_64.s aesni-sha1-x86_64.s aesni-sha256-x86_64.s aesni-mb-x86_64.s", 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",
aes_obj => "aes-x86_64.o vpaes-x86_64.o bsaes-x86_64.o aesni-x86_64.o aesni-sha1-x86_64.o aesni-sha256-x86_64.o aesni-mb-x86_64.o", aes_obj => "aes_core.o aes_cbc.o vpaes-x86_64.o aesni-x86_64.o aesni-sha1-x86_64.o aesni-sha256-x86_64.o aesni-mb-x86_64.o",
apps_aux_src => "win32_init.c", apps_aux_src => "win32_init.c",
apps_init_src => "", apps_init_src => "",
apps_obj => "win32_init.o", apps_obj => "win32_init.o",
@ -1716,8 +1716,9 @@ our %unified_info = (
{ {
"deps" => "deps" =>
[ [
"crypto/aes/aes-x86_64.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -1727,7 +1728,6 @@ our %unified_info = (
"crypto/aes/aesni-sha1-x86_64.o", "crypto/aes/aesni-sha1-x86_64.o",
"crypto/aes/aesni-sha256-x86_64.o", "crypto/aes/aesni-sha256-x86_64.o",
"crypto/aes/aesni-x86_64.o", "crypto/aes/aesni-x86_64.o",
"crypto/aes/bsaes-x86_64.o",
"crypto/aes/vpaes-x86_64.o", "crypto/aes/vpaes-x86_64.o",
], ],
"products" => "products" =>
@ -3269,6 +3269,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -4920,7 +4921,7 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/aes/aes-x86_64.o" => "crypto/aes/aes_cbc.o" =>
[ [
".", ".",
"crypto/include", "crypto/include",
@ -4932,6 +4933,12 @@ our %unified_info = (
"crypto/include", "crypto/include",
"include", "include",
], ],
"crypto/aes/aes_core.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
".", ".",
@ -5002,12 +5009,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/aes/bsaes-x86_64.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/vpaes-x86_64.o" => "crypto/aes/vpaes-x86_64.o" =>
[ [
".", ".",
@ -7970,10 +7971,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -10114,6 +10111,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -10725,14 +10726,18 @@ our %unified_info = (
[ [
"apps/x509.c", "apps/x509.c",
], ],
"crypto/aes/aes-x86_64.o" => "crypto/aes/aes_cbc.o" =>
[ [
"crypto/aes/aes-x86_64.s", "crypto/aes/aes_cbc.c",
], ],
"crypto/aes/aes_cfb.o" => "crypto/aes/aes_cfb.o" =>
[ [
"crypto/aes/aes_cfb.c", "crypto/aes/aes_cfb.c",
], ],
"crypto/aes/aes_core.o" =>
[
"crypto/aes/aes_core.c",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
"crypto/aes/aes_ecb.c", "crypto/aes/aes_ecb.c",
@ -10769,10 +10774,6 @@ our %unified_info = (
[ [
"crypto/aes/aesni-x86_64.s", "crypto/aes/aesni-x86_64.s",
], ],
"crypto/aes/bsaes-x86_64.o" =>
[
"crypto/aes/bsaes-x86_64.s",
],
"crypto/aes/vpaes-x86_64.o" => "crypto/aes/vpaes-x86_64.o" =>
[ [
"crypto/aes/vpaes-x86_64.s", "crypto/aes/vpaes-x86_64.s",
@ -13466,8 +13467,9 @@ our %unified_info = (
], ],
"libcrypto" => "libcrypto" =>
[ [
"crypto/aes/aes-x86_64.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -13477,7 +13479,6 @@ our %unified_info = (
"crypto/aes/aesni-sha1-x86_64.o", "crypto/aes/aesni-sha1-x86_64.o",
"crypto/aes/aesni-sha256-x86_64.o", "crypto/aes/aesni-sha256-x86_64.o",
"crypto/aes/aesni-x86_64.o", "crypto/aes/aesni-x86_64.o",
"crypto/aes/bsaes-x86_64.o",
"crypto/aes/vpaes-x86_64.o", "crypto/aes/vpaes-x86_64.o",
"crypto/aria/aria.o", "crypto/aria/aria.o",
"crypto/asn1/a_bitstr.o", "crypto/asn1/a_bitstr.o",
@ -15380,6 +15381,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15725,6 +15727,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: " #define PLATFORM "platform: "
#define DATE "built on: Wed Jun 12 20:56:51 2019 UTC" #define DATE "built on: Fri Sep 13 16:03:14 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a

View File

@ -20,9 +20,7 @@
'KECCAK1600_ASM', 'KECCAK1600_ASM',
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'BSAES_ASM',
'GHASH_ASM', 'GHASH_ASM',
'ECP_NISTZ256_ASM', 'ECP_NISTZ256_ASM',
'X25519_ASM', 'X25519_ASM',

View File

@ -45,7 +45,9 @@
'openssl/ssl/t1_trce.c', 'openssl/ssl/t1_trce.c',
'openssl/ssl/tls13_enc.c', 'openssl/ssl/tls13_enc.c',
'openssl/ssl/tls_srp.c', 'openssl/ssl/tls_srp.c',
'openssl/crypto/aes/aes_cbc.c',
'openssl/crypto/aes/aes_cfb.c', 'openssl/crypto/aes/aes_cfb.c',
'openssl/crypto/aes/aes_core.c',
'openssl/crypto/aes/aes_ecb.c', 'openssl/crypto/aes/aes_ecb.c',
'openssl/crypto/aes/aes_ige.c', 'openssl/crypto/aes/aes_ige.c',
'openssl/crypto/aes/aes_misc.c', 'openssl/crypto/aes/aes_misc.c',
@ -675,12 +677,10 @@
'openssl/engines/e_padlock.c', 'openssl/engines/e_padlock.c',
], ],
'openssl_sources_VC-WIN64A': [ 'openssl_sources_VC-WIN64A': [
'./config/archs/VC-WIN64A/asm_avx2/crypto/aes/aes-x86_64.asm',
'./config/archs/VC-WIN64A/asm_avx2/crypto/aes/aesni-mb-x86_64.asm', './config/archs/VC-WIN64A/asm_avx2/crypto/aes/aesni-mb-x86_64.asm',
'./config/archs/VC-WIN64A/asm_avx2/crypto/aes/aesni-sha1-x86_64.asm', './config/archs/VC-WIN64A/asm_avx2/crypto/aes/aesni-sha1-x86_64.asm',
'./config/archs/VC-WIN64A/asm_avx2/crypto/aes/aesni-sha256-x86_64.asm', './config/archs/VC-WIN64A/asm_avx2/crypto/aes/aesni-sha256-x86_64.asm',
'./config/archs/VC-WIN64A/asm_avx2/crypto/aes/aesni-x86_64.asm', './config/archs/VC-WIN64A/asm_avx2/crypto/aes/aesni-x86_64.asm',
'./config/archs/VC-WIN64A/asm_avx2/crypto/aes/bsaes-x86_64.asm',
'./config/archs/VC-WIN64A/asm_avx2/crypto/aes/vpaes-x86_64.asm', './config/archs/VC-WIN64A/asm_avx2/crypto/aes/vpaes-x86_64.asm',
'./config/archs/VC-WIN64A/asm_avx2/crypto/bn/rsaz-avx2.asm', './config/archs/VC-WIN64A/asm_avx2/crypto/bn/rsaz-avx2.asm',
'./config/archs/VC-WIN64A/asm_avx2/crypto/bn/rsaz-x86_64.asm', './config/archs/VC-WIN64A/asm_avx2/crypto/bn/rsaz-x86_64.asm',
@ -727,9 +727,7 @@
'KECCAK1600_ASM', 'KECCAK1600_ASM',
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'BSAES_ASM',
'GHASH_ASM', 'GHASH_ASM',
'ECP_NISTZ256_ASM', 'ECP_NISTZ256_ASM',
'X25519_ASM', 'X25519_ASM',

View File

@ -115,8 +115,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "VC-WIN64A", target => "VC-WIN64A",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -132,7 +132,7 @@ our %target = (
LDFLAGS => "/nologo /debug", LDFLAGS => "/nologo /debug",
MT => "mt", MT => "mt",
MTFLAGS => "-nologo", MTFLAGS => "-nologo",
RANLIB => "CODE(0x55e934b6f2a8)", RANLIB => "CODE(0x557a48128d28)",
RC => "rc", 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" ], _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", aes_asm_src => "aes_core.c aes_cbc.c",
@ -3244,6 +3244,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -7855,10 +7856,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -9951,6 +9948,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -15102,6 +15103,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15447,6 +15449,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: " #define PLATFORM "platform: "
#define DATE "built on: Wed Jun 12 20:57:01 2019 UTC" #define DATE "built on: Fri Sep 13 16:03:30 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a

View File

@ -110,8 +110,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "aix-gcc", target => "aix-gcc",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -170,7 +170,7 @@ our %target = (
modes_obj => "ghashp8-ppc.o", modes_obj => "ghashp8-ppc.o",
module_cflags => "", module_cflags => "",
module_cxxflags => "", module_cxxflags => "",
module_ldflags => "-Wl,-G,-bsymbolic,-bexpall", module_ldflags => "-Wl,-G,-bsymbolic,-bnoentry",
padlock_asm_src => "", padlock_asm_src => "",
padlock_obj => "", padlock_obj => "",
perlasm_scheme => "aix32", perlasm_scheme => "aix32",
@ -3236,6 +3236,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -7873,10 +7874,6 @@ our %unified_info = (
"crypto/include", "crypto/include",
"include", "include",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -10011,6 +10008,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -15249,6 +15250,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15594,6 +15596,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: aix-gcc" #define PLATFORM "platform: aix-gcc"
#define DATE "built on: Wed Jun 12 20:53:10 2019 UTC" #define DATE "built on: Fri Sep 13 15:56:47 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a

View File

@ -110,8 +110,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "aix-gcc", target => "aix-gcc",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -170,7 +170,7 @@ our %target = (
modes_obj => "ghashp8-ppc.o", modes_obj => "ghashp8-ppc.o",
module_cflags => "", module_cflags => "",
module_cxxflags => "", module_cxxflags => "",
module_ldflags => "-Wl,-G,-bsymbolic,-bexpall", module_ldflags => "-Wl,-G,-bsymbolic,-bnoentry",
padlock_asm_src => "", padlock_asm_src => "",
padlock_obj => "", padlock_obj => "",
perlasm_scheme => "aix32", perlasm_scheme => "aix32",
@ -3236,6 +3236,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -7873,10 +7874,6 @@ our %unified_info = (
"crypto/include", "crypto/include",
"include", "include",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -10011,6 +10008,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -15249,6 +15250,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15594,6 +15596,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: aix-gcc" #define PLATFORM "platform: aix-gcc"
#define DATE "built on: Wed Jun 12 20:53:13 2019 UTC" #define DATE "built on: Fri Sep 13 15:56:53 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a

View File

@ -110,8 +110,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "aix-gcc", target => "aix-gcc",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -170,7 +170,7 @@ our %target = (
modes_obj => "", modes_obj => "",
module_cflags => "", module_cflags => "",
module_cxxflags => "", module_cxxflags => "",
module_ldflags => "-Wl,-G,-bsymbolic,-bexpall", module_ldflags => "-Wl,-G,-bsymbolic,-bnoentry",
padlock_asm_src => "", padlock_asm_src => "",
padlock_obj => "", padlock_obj => "",
perlasm_scheme => "aix32", perlasm_scheme => "aix32",
@ -3222,6 +3222,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -7823,10 +7824,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -9919,6 +9916,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -15092,6 +15093,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15437,6 +15439,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: aix-gcc" #define PLATFORM "platform: aix-gcc"
#define DATE "built on: Wed Jun 12 20:53:16 2019 UTC" #define DATE "built on: Fri Sep 13 15:56:58 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a

View File

@ -110,8 +110,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "aix64-gcc", target => "aix64-gcc",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -170,7 +170,7 @@ our %target = (
modes_obj => "ghashp8-ppc.o", modes_obj => "ghashp8-ppc.o",
module_cflags => "", module_cflags => "",
module_cxxflags => "", module_cxxflags => "",
module_ldflags => "-Wl,-G,-bsymbolic,-bexpall", module_ldflags => "-Wl,-G,-bsymbolic,-bnoentry",
padlock_asm_src => "", padlock_asm_src => "",
padlock_obj => "", padlock_obj => "",
perlasm_scheme => "aix64", perlasm_scheme => "aix64",
@ -3239,6 +3239,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -7894,10 +7895,6 @@ our %unified_info = (
"crypto/include", "crypto/include",
"include", "include",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -10032,6 +10029,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -15285,6 +15286,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15630,6 +15632,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: aix64-gcc" #define PLATFORM "platform: aix64-gcc"
#define DATE "built on: Wed Jun 12 20:53:19 2019 UTC" #define DATE "built on: Fri Sep 13 15:57:01 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a

View File

@ -110,8 +110,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "aix64-gcc", target => "aix64-gcc",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -170,7 +170,7 @@ our %target = (
modes_obj => "ghashp8-ppc.o", modes_obj => "ghashp8-ppc.o",
module_cflags => "", module_cflags => "",
module_cxxflags => "", module_cxxflags => "",
module_ldflags => "-Wl,-G,-bsymbolic,-bexpall", module_ldflags => "-Wl,-G,-bsymbolic,-bnoentry",
padlock_asm_src => "", padlock_asm_src => "",
padlock_obj => "", padlock_obj => "",
perlasm_scheme => "aix64", perlasm_scheme => "aix64",
@ -3239,6 +3239,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -7894,10 +7895,6 @@ our %unified_info = (
"crypto/include", "crypto/include",
"include", "include",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -10032,6 +10029,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -15285,6 +15286,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15630,6 +15632,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: aix64-gcc" #define PLATFORM "platform: aix64-gcc"
#define DATE "built on: Wed Jun 12 20:53:22 2019 UTC" #define DATE "built on: Fri Sep 13 15:57:07 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a

View File

@ -110,8 +110,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "aix64-gcc", target => "aix64-gcc",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -170,7 +170,7 @@ our %target = (
modes_obj => "", modes_obj => "",
module_cflags => "", module_cflags => "",
module_cxxflags => "", module_cxxflags => "",
module_ldflags => "-Wl,-G,-bsymbolic,-bexpall", module_ldflags => "-Wl,-G,-bsymbolic,-bnoentry",
padlock_asm_src => "", padlock_asm_src => "",
padlock_obj => "", padlock_obj => "",
perlasm_scheme => "aix64", perlasm_scheme => "aix64",
@ -3222,6 +3222,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -7823,10 +7824,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -9919,6 +9916,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -15092,6 +15093,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15437,6 +15439,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: aix64-gcc" #define PLATFORM "platform: aix64-gcc"
#define DATE "built on: Wed Jun 12 20:53:25 2019 UTC" #define DATE "built on: Fri Sep 13 15:57:13 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a

View File

@ -48,7 +48,7 @@ our %config = (
export_var_as_fn => "0", export_var_as_fn => "0",
includes => [ ], includes => [ ],
lflags => [ ], lflags => [ ],
lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_BN_ASM_PART_WORDS", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "RC4_ASM", "MD5_ASM", "RMD160_ASM", "AES_ASM", "VPAES_ASM", "WHIRLPOOL_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "POLY1305_ASM" ], lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_BN_ASM_PART_WORDS", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "RC4_ASM", "MD5_ASM", "RMD160_ASM", "VPAES_ASM", "WHIRLPOOL_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "POLY1305_ASM" ],
libdir => "", libdir => "",
major => "1", major => "1",
makedepprog => "\$(CROSS_COMPILE)gcc", makedepprog => "\$(CROSS_COMPILE)gcc",
@ -111,8 +111,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "darwin-i386-cc", target => "darwin-i386-cc",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -124,8 +124,8 @@ our %target = (
RANLIB => "ranlib -c", RANLIB => "ranlib -c",
RC => "windres", RC => "windres",
_conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ], _conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ],
aes_asm_src => "aes-586.s vpaes-x86.s aesni-x86.s", aes_asm_src => "aes_core.c aes_cbc.c vpaes-x86.s aesni-x86.s",
aes_obj => "aes-586.o vpaes-x86.o aesni-x86.o", aes_obj => "aes_core.o aes_cbc.o vpaes-x86.o aesni-x86.o",
apps_aux_src => "", apps_aux_src => "",
apps_init_src => "", apps_init_src => "",
apps_obj => "", apps_obj => "",
@ -1684,8 +1684,9 @@ our %unified_info = (
{ {
"deps" => "deps" =>
[ [
"crypto/aes/aes-586.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -3226,6 +3227,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -4839,12 +4841,6 @@ our %unified_info = (
"include", "include",
"apps", "apps",
], ],
"crypto/aes/aes-586.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes-armv4.o" => "crypto/aes/aes-armv4.o" =>
[ [
"crypto", "crypto",
@ -4861,12 +4857,24 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/aes/aes_cbc.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes_cfb.o" => "crypto/aes/aes_cfb.o" =>
[ [
".", ".",
"crypto/include", "crypto/include",
"include", "include",
], ],
"crypto/aes/aes_core.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
".", ".",
@ -7845,10 +7853,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -9983,6 +9987,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -10616,14 +10624,18 @@ our %unified_info = (
[ [
"apps/x509.c", "apps/x509.c",
], ],
"crypto/aes/aes-586.o" => "crypto/aes/aes_cbc.o" =>
[ [
"crypto/aes/aes-586.s", "crypto/aes/aes_cbc.c",
], ],
"crypto/aes/aes_cfb.o" => "crypto/aes/aes_cfb.o" =>
[ [
"crypto/aes/aes_cfb.c", "crypto/aes/aes_cfb.c",
], ],
"crypto/aes/aes_core.o" =>
[
"crypto/aes/aes_core.c",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
"crypto/aes/aes_ecb.c", "crypto/aes/aes_ecb.c",
@ -13313,8 +13325,9 @@ our %unified_info = (
], ],
"libcrypto" => "libcrypto" =>
[ [
"crypto/aes/aes-586.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -15216,6 +15229,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15561,6 +15575,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: darwin-i386-cc" #define PLATFORM "platform: darwin-i386-cc"
#define DATE "built on: Wed Jun 12 20:54:07 2019 UTC" #define DATE "built on: Fri Sep 13 15:58:40 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a
@ -36,12 +36,11 @@ static const char compiler_flags[] = {
'S','H','A','2','5','6','_','A','S','M',' ','-','D','S','H','A', 'S','H','A','2','5','6','_','A','S','M',' ','-','D','S','H','A',
'5','1','2','_','A','S','M',' ','-','D','R','C','4','_','A','S', '5','1','2','_','A','S','M',' ','-','D','R','C','4','_','A','S',
'M',' ','-','D','M','D','5','_','A','S','M',' ','-','D','R','M', 'M',' ','-','D','M','D','5','_','A','S','M',' ','-','D','R','M',
'D','1','6','0','_','A','S','M',' ','-','D','A','E','S','_','A', 'D','1','6','0','_','A','S','M',' ','-','D','V','P','A','E','S',
'S','M',' ','-','D','V','P','A','E','S','_','A','S','M',' ','-', '_','A','S','M',' ','-','D','W','H','I','R','L','P','O','O','L',
'D','W','H','I','R','L','P','O','O','L','_','A','S','M',' ','-', '_','A','S','M',' ','-','D','G','H','A','S','H','_','A','S','M',
'D','G','H','A','S','H','_','A','S','M',' ','-','D','E','C','P', ' ','-','D','E','C','P','_','N','I','S','T','Z','2','5','6','_',
'_','N','I','S','T','Z','2','5','6','_','A','S','M',' ','-','D', 'A','S','M',' ','-','D','P','O','L','Y','1','3','0','5','_','A',
'P','O','L','Y','1','3','0','5','_','A','S','M',' ','-','D','_', 'S','M',' ','-','D','_','R','E','E','N','T','R','A','N','T',' ',
'R','E','E','N','T','R','A','N','T',' ','-','D','N','D','E','B', '-','D','N','D','E','B','U','G','\0'
'U','G','\0'
}; };

View File

@ -15,7 +15,6 @@
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'RMD160_ASM', 'RMD160_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'WHIRLPOOL_ASM', 'WHIRLPOOL_ASM',
'GHASH_ASM', 'GHASH_ASM',

View File

@ -45,7 +45,9 @@
'openssl/ssl/t1_trce.c', 'openssl/ssl/t1_trce.c',
'openssl/ssl/tls13_enc.c', 'openssl/ssl/tls13_enc.c',
'openssl/ssl/tls_srp.c', 'openssl/ssl/tls_srp.c',
'openssl/crypto/aes/aes_cbc.c',
'openssl/crypto/aes/aes_cfb.c', 'openssl/crypto/aes/aes_cfb.c',
'openssl/crypto/aes/aes_core.c',
'openssl/crypto/aes/aes_ecb.c', 'openssl/crypto/aes/aes_ecb.c',
'openssl/crypto/aes/aes_ige.c', 'openssl/crypto/aes/aes_ige.c',
'openssl/crypto/aes/aes_misc.c', 'openssl/crypto/aes/aes_misc.c',
@ -671,7 +673,6 @@
'openssl/engines/e_padlock.c', 'openssl/engines/e_padlock.c',
], ],
'openssl_sources_darwin-i386-cc': [ 'openssl_sources_darwin-i386-cc': [
'./config/archs/darwin-i386-cc/asm/crypto/aes/aes-586.s',
'./config/archs/darwin-i386-cc/asm/crypto/aes/aesni-x86.s', './config/archs/darwin-i386-cc/asm/crypto/aes/aesni-x86.s',
'./config/archs/darwin-i386-cc/asm/crypto/aes/vpaes-x86.s', './config/archs/darwin-i386-cc/asm/crypto/aes/vpaes-x86.s',
'./config/archs/darwin-i386-cc/asm/crypto/bf/bf-586.s', './config/archs/darwin-i386-cc/asm/crypto/bf/bf-586.s',
@ -711,7 +712,6 @@
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'RMD160_ASM', 'RMD160_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'WHIRLPOOL_ASM', 'WHIRLPOOL_ASM',
'GHASH_ASM', 'GHASH_ASM',

View File

@ -48,7 +48,7 @@ our %config = (
export_var_as_fn => "0", export_var_as_fn => "0",
includes => [ ], includes => [ ],
lflags => [ ], lflags => [ ],
lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_BN_ASM_PART_WORDS", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "RC4_ASM", "MD5_ASM", "RMD160_ASM", "AES_ASM", "VPAES_ASM", "WHIRLPOOL_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "POLY1305_ASM" ], lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_BN_ASM_PART_WORDS", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "RC4_ASM", "MD5_ASM", "RMD160_ASM", "VPAES_ASM", "WHIRLPOOL_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "POLY1305_ASM" ],
libdir => "", libdir => "",
major => "1", major => "1",
makedepprog => "\$(CROSS_COMPILE)../config/fake_gcc.pl", makedepprog => "\$(CROSS_COMPILE)../config/fake_gcc.pl",
@ -111,8 +111,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "darwin-i386-cc", target => "darwin-i386-cc",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -124,8 +124,8 @@ our %target = (
RANLIB => "ranlib -c", RANLIB => "ranlib -c",
RC => "windres", RC => "windres",
_conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ], _conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ],
aes_asm_src => "aes-586.s vpaes-x86.s aesni-x86.s", aes_asm_src => "aes_core.c aes_cbc.c vpaes-x86.s aesni-x86.s",
aes_obj => "aes-586.o vpaes-x86.o aesni-x86.o", aes_obj => "aes_core.o aes_cbc.o vpaes-x86.o aesni-x86.o",
apps_aux_src => "", apps_aux_src => "",
apps_init_src => "", apps_init_src => "",
apps_obj => "", apps_obj => "",
@ -1684,8 +1684,9 @@ our %unified_info = (
{ {
"deps" => "deps" =>
[ [
"crypto/aes/aes-586.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -3226,6 +3227,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -4839,12 +4841,6 @@ our %unified_info = (
"include", "include",
"apps", "apps",
], ],
"crypto/aes/aes-586.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes-armv4.o" => "crypto/aes/aes-armv4.o" =>
[ [
"crypto", "crypto",
@ -4861,12 +4857,24 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/aes/aes_cbc.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes_cfb.o" => "crypto/aes/aes_cfb.o" =>
[ [
".", ".",
"crypto/include", "crypto/include",
"include", "include",
], ],
"crypto/aes/aes_core.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
".", ".",
@ -7845,10 +7853,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -9983,6 +9987,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -10616,14 +10624,18 @@ our %unified_info = (
[ [
"apps/x509.c", "apps/x509.c",
], ],
"crypto/aes/aes-586.o" => "crypto/aes/aes_cbc.o" =>
[ [
"crypto/aes/aes-586.s", "crypto/aes/aes_cbc.c",
], ],
"crypto/aes/aes_cfb.o" => "crypto/aes/aes_cfb.o" =>
[ [
"crypto/aes/aes_cfb.c", "crypto/aes/aes_cfb.c",
], ],
"crypto/aes/aes_core.o" =>
[
"crypto/aes/aes_core.c",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
"crypto/aes/aes_ecb.c", "crypto/aes/aes_ecb.c",
@ -13313,8 +13325,9 @@ our %unified_info = (
], ],
"libcrypto" => "libcrypto" =>
[ [
"crypto/aes/aes-586.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -15216,6 +15229,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15561,6 +15575,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: darwin-i386-cc" #define PLATFORM "platform: darwin-i386-cc"
#define DATE "built on: Wed Jun 12 20:54:11 2019 UTC" #define DATE "built on: Fri Sep 13 15:58:46 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a
@ -37,12 +37,11 @@ static const char compiler_flags[] = {
'-','D','S','H','A','2','5','6','_','A','S','M',' ','-','D','S', '-','D','S','H','A','2','5','6','_','A','S','M',' ','-','D','S',
'H','A','5','1','2','_','A','S','M',' ','-','D','R','C','4','_', 'H','A','5','1','2','_','A','S','M',' ','-','D','R','C','4','_',
'A','S','M',' ','-','D','M','D','5','_','A','S','M',' ','-','D', 'A','S','M',' ','-','D','M','D','5','_','A','S','M',' ','-','D',
'R','M','D','1','6','0','_','A','S','M',' ','-','D','A','E','S', 'R','M','D','1','6','0','_','A','S','M',' ','-','D','V','P','A',
'_','A','S','M',' ','-','D','V','P','A','E','S','_','A','S','M', 'E','S','_','A','S','M',' ','-','D','W','H','I','R','L','P','O',
' ','-','D','W','H','I','R','L','P','O','O','L','_','A','S','M', 'O','L','_','A','S','M',' ','-','D','G','H','A','S','H','_','A',
' ','-','D','G','H','A','S','H','_','A','S','M',' ','-','D','E', 'S','M',' ','-','D','E','C','P','_','N','I','S','T','Z','2','5',
'C','P','_','N','I','S','T','Z','2','5','6','_','A','S','M',' ', '6','_','A','S','M',' ','-','D','P','O','L','Y','1','3','0','5',
'-','D','P','O','L','Y','1','3','0','5','_','A','S','M',' ','-', '_','A','S','M',' ','-','D','_','R','E','E','N','T','R','A','N',
'D','_','R','E','E','N','T','R','A','N','T',' ','-','D','N','D', 'T',' ','-','D','N','D','E','B','U','G','\0'
'E','B','U','G','\0'
}; };

View File

@ -15,7 +15,6 @@
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'RMD160_ASM', 'RMD160_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'WHIRLPOOL_ASM', 'WHIRLPOOL_ASM',
'GHASH_ASM', 'GHASH_ASM',

View File

@ -45,7 +45,9 @@
'openssl/ssl/t1_trce.c', 'openssl/ssl/t1_trce.c',
'openssl/ssl/tls13_enc.c', 'openssl/ssl/tls13_enc.c',
'openssl/ssl/tls_srp.c', 'openssl/ssl/tls_srp.c',
'openssl/crypto/aes/aes_cbc.c',
'openssl/crypto/aes/aes_cfb.c', 'openssl/crypto/aes/aes_cfb.c',
'openssl/crypto/aes/aes_core.c',
'openssl/crypto/aes/aes_ecb.c', 'openssl/crypto/aes/aes_ecb.c',
'openssl/crypto/aes/aes_ige.c', 'openssl/crypto/aes/aes_ige.c',
'openssl/crypto/aes/aes_misc.c', 'openssl/crypto/aes/aes_misc.c',
@ -671,7 +673,6 @@
'openssl/engines/e_padlock.c', 'openssl/engines/e_padlock.c',
], ],
'openssl_sources_darwin-i386-cc': [ 'openssl_sources_darwin-i386-cc': [
'./config/archs/darwin-i386-cc/asm_avx2/crypto/aes/aes-586.s',
'./config/archs/darwin-i386-cc/asm_avx2/crypto/aes/aesni-x86.s', './config/archs/darwin-i386-cc/asm_avx2/crypto/aes/aesni-x86.s',
'./config/archs/darwin-i386-cc/asm_avx2/crypto/aes/vpaes-x86.s', './config/archs/darwin-i386-cc/asm_avx2/crypto/aes/vpaes-x86.s',
'./config/archs/darwin-i386-cc/asm_avx2/crypto/bf/bf-586.s', './config/archs/darwin-i386-cc/asm_avx2/crypto/bf/bf-586.s',
@ -711,7 +712,6 @@
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'RMD160_ASM', 'RMD160_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'WHIRLPOOL_ASM', 'WHIRLPOOL_ASM',
'GHASH_ASM', 'GHASH_ASM',

View File

@ -110,8 +110,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "darwin-i386-cc", target => "darwin-i386-cc",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -3212,6 +3212,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -7801,10 +7802,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -9897,6 +9894,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -15070,6 +15071,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15415,6 +15417,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: darwin-i386-cc" #define PLATFORM "platform: darwin-i386-cc"
#define DATE "built on: Wed Jun 12 20:54:15 2019 UTC" #define DATE "built on: Fri Sep 13 15:58:53 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a

View File

@ -48,7 +48,7 @@ our %config = (
export_var_as_fn => "0", export_var_as_fn => "0",
includes => [ ], includes => [ ],
lflags => [ ], lflags => [ ],
lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_MONT5", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "KECCAK1600_ASM", "RC4_ASM", "MD5_ASM", "AES_ASM", "VPAES_ASM", "BSAES_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "X25519_ASM", "POLY1305_ASM" ], lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_MONT5", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "KECCAK1600_ASM", "RC4_ASM", "MD5_ASM", "VPAES_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "X25519_ASM", "POLY1305_ASM" ],
libdir => "", libdir => "",
major => "1", major => "1",
makedepprog => "\$(CROSS_COMPILE)gcc", makedepprog => "\$(CROSS_COMPILE)gcc",
@ -111,8 +111,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "darwin64-x86_64-cc", target => "darwin64-x86_64-cc",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -124,8 +124,8 @@ our %target = (
RANLIB => "ranlib -c", RANLIB => "ranlib -c",
RC => "windres", RC => "windres",
_conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ], _conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ],
aes_asm_src => "aes-x86_64.s vpaes-x86_64.s bsaes-x86_64.s aesni-x86_64.s aesni-sha1-x86_64.s aesni-sha256-x86_64.s aesni-mb-x86_64.s", 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",
aes_obj => "aes-x86_64.o vpaes-x86_64.o bsaes-x86_64.o aesni-x86_64.o aesni-sha1-x86_64.o aesni-sha256-x86_64.o aesni-mb-x86_64.o", aes_obj => "aes_core.o aes_cbc.o vpaes-x86_64.o aesni-x86_64.o aesni-sha1-x86_64.o aesni-sha256-x86_64.o aesni-mb-x86_64.o",
apps_aux_src => "", apps_aux_src => "",
apps_init_src => "", apps_init_src => "",
apps_obj => "", apps_obj => "",
@ -1684,8 +1684,9 @@ our %unified_info = (
{ {
"deps" => "deps" =>
[ [
"crypto/aes/aes-x86_64.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -1695,7 +1696,6 @@ our %unified_info = (
"crypto/aes/aesni-sha1-x86_64.o", "crypto/aes/aesni-sha1-x86_64.o",
"crypto/aes/aesni-sha256-x86_64.o", "crypto/aes/aesni-sha256-x86_64.o",
"crypto/aes/aesni-x86_64.o", "crypto/aes/aesni-x86_64.o",
"crypto/aes/bsaes-x86_64.o",
"crypto/aes/vpaes-x86_64.o", "crypto/aes/vpaes-x86_64.o",
], ],
"products" => "products" =>
@ -3250,6 +3250,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -4879,7 +4880,7 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/aes/aes-x86_64.o" => "crypto/aes/aes_cbc.o" =>
[ [
".", ".",
"crypto/include", "crypto/include",
@ -4891,6 +4892,12 @@ our %unified_info = (
"crypto/include", "crypto/include",
"include", "include",
], ],
"crypto/aes/aes_core.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
".", ".",
@ -4961,12 +4968,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/aes/bsaes-x86_64.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/vpaes-x86_64.o" => "crypto/aes/vpaes-x86_64.o" =>
[ [
".", ".",
@ -7929,10 +7930,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -10073,6 +10070,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -10706,14 +10707,18 @@ our %unified_info = (
[ [
"apps/x509.c", "apps/x509.c",
], ],
"crypto/aes/aes-x86_64.o" => "crypto/aes/aes_cbc.o" =>
[ [
"crypto/aes/aes-x86_64.s", "crypto/aes/aes_cbc.c",
], ],
"crypto/aes/aes_cfb.o" => "crypto/aes/aes_cfb.o" =>
[ [
"crypto/aes/aes_cfb.c", "crypto/aes/aes_cfb.c",
], ],
"crypto/aes/aes_core.o" =>
[
"crypto/aes/aes_core.c",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
"crypto/aes/aes_ecb.c", "crypto/aes/aes_ecb.c",
@ -10750,10 +10755,6 @@ our %unified_info = (
[ [
"crypto/aes/aesni-x86_64.s", "crypto/aes/aesni-x86_64.s",
], ],
"crypto/aes/bsaes-x86_64.o" =>
[
"crypto/aes/bsaes-x86_64.s",
],
"crypto/aes/vpaes-x86_64.o" => "crypto/aes/vpaes-x86_64.o" =>
[ [
"crypto/aes/vpaes-x86_64.s", "crypto/aes/vpaes-x86_64.s",
@ -13447,8 +13448,9 @@ our %unified_info = (
], ],
"libcrypto" => "libcrypto" =>
[ [
"crypto/aes/aes-x86_64.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -13458,7 +13460,6 @@ our %unified_info = (
"crypto/aes/aesni-sha1-x86_64.o", "crypto/aes/aesni-sha1-x86_64.o",
"crypto/aes/aesni-sha256-x86_64.o", "crypto/aes/aesni-sha256-x86_64.o",
"crypto/aes/aesni-x86_64.o", "crypto/aes/aesni-x86_64.o",
"crypto/aes/bsaes-x86_64.o",
"crypto/aes/vpaes-x86_64.o", "crypto/aes/vpaes-x86_64.o",
"crypto/aria/aria.o", "crypto/aria/aria.o",
"crypto/asn1/a_bitstr.o", "crypto/asn1/a_bitstr.o",
@ -15361,6 +15362,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15706,6 +15708,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: darwin64-x86_64-cc" #define PLATFORM "platform: darwin64-x86_64-cc"
#define DATE "built on: Wed Jun 12 20:53:47 2019 UTC" #define DATE "built on: Fri Sep 13 15:58:07 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a
@ -35,12 +35,11 @@ static const char compiler_flags[] = {
'A','2','5','6','_','A','S','M',' ','-','D','S','H','A','5','1', 'A','2','5','6','_','A','S','M',' ','-','D','S','H','A','5','1',
'2','_','A','S','M',' ','-','D','K','E','C','C','A','K','1','6', '2','_','A','S','M',' ','-','D','K','E','C','C','A','K','1','6',
'0','0','_','A','S','M',' ','-','D','R','C','4','_','A','S','M', '0','0','_','A','S','M',' ','-','D','R','C','4','_','A','S','M',
' ','-','D','M','D','5','_','A','S','M',' ','-','D','A','E','S', ' ','-','D','M','D','5','_','A','S','M',' ','-','D','V','P','A',
'_','A','S','M',' ','-','D','V','P','A','E','S','_','A','S','M', 'E','S','_','A','S','M',' ','-','D','G','H','A','S','H','_','A',
' ','-','D','B','S','A','E','S','_','A','S','M',' ','-','D','G', 'S','M',' ','-','D','E','C','P','_','N','I','S','T','Z','2','5',
'H','A','S','H','_','A','S','M',' ','-','D','E','C','P','_','N', '6','_','A','S','M',' ','-','D','X','2','5','5','1','9','_','A',
'I','S','T','Z','2','5','6','_','A','S','M',' ','-','D','X','2', 'S','M',' ','-','D','P','O','L','Y','1','3','0','5','_','A','S',
'5','5','1','9','_','A','S','M',' ','-','D','P','O','L','Y','1', 'M',' ','-','D','_','R','E','E','N','T','R','A','N','T',' ','-',
'3','0','5','_','A','S','M',' ','-','D','_','R','E','E','N','T', 'D','N','D','E','B','U','G','\0'
'R','A','N','T',' ','-','D','N','D','E','B','U','G','\0'
}; };

View File

@ -15,9 +15,7 @@
'KECCAK1600_ASM', 'KECCAK1600_ASM',
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'BSAES_ASM',
'GHASH_ASM', 'GHASH_ASM',
'ECP_NISTZ256_ASM', 'ECP_NISTZ256_ASM',
'X25519_ASM', 'X25519_ASM',

View File

@ -45,7 +45,9 @@
'openssl/ssl/t1_trce.c', 'openssl/ssl/t1_trce.c',
'openssl/ssl/tls13_enc.c', 'openssl/ssl/tls13_enc.c',
'openssl/ssl/tls_srp.c', 'openssl/ssl/tls_srp.c',
'openssl/crypto/aes/aes_cbc.c',
'openssl/crypto/aes/aes_cfb.c', 'openssl/crypto/aes/aes_cfb.c',
'openssl/crypto/aes/aes_core.c',
'openssl/crypto/aes/aes_ecb.c', 'openssl/crypto/aes/aes_ecb.c',
'openssl/crypto/aes/aes_ige.c', 'openssl/crypto/aes/aes_ige.c',
'openssl/crypto/aes/aes_misc.c', 'openssl/crypto/aes/aes_misc.c',
@ -675,12 +677,10 @@
'openssl/engines/e_padlock.c', 'openssl/engines/e_padlock.c',
], ],
'openssl_sources_darwin64-x86_64-cc': [ 'openssl_sources_darwin64-x86_64-cc': [
'./config/archs/darwin64-x86_64-cc/asm/crypto/aes/aes-x86_64.s',
'./config/archs/darwin64-x86_64-cc/asm/crypto/aes/aesni-mb-x86_64.s', './config/archs/darwin64-x86_64-cc/asm/crypto/aes/aesni-mb-x86_64.s',
'./config/archs/darwin64-x86_64-cc/asm/crypto/aes/aesni-sha1-x86_64.s', './config/archs/darwin64-x86_64-cc/asm/crypto/aes/aesni-sha1-x86_64.s',
'./config/archs/darwin64-x86_64-cc/asm/crypto/aes/aesni-sha256-x86_64.s', './config/archs/darwin64-x86_64-cc/asm/crypto/aes/aesni-sha256-x86_64.s',
'./config/archs/darwin64-x86_64-cc/asm/crypto/aes/aesni-x86_64.s', './config/archs/darwin64-x86_64-cc/asm/crypto/aes/aesni-x86_64.s',
'./config/archs/darwin64-x86_64-cc/asm/crypto/aes/bsaes-x86_64.s',
'./config/archs/darwin64-x86_64-cc/asm/crypto/aes/vpaes-x86_64.s', './config/archs/darwin64-x86_64-cc/asm/crypto/aes/vpaes-x86_64.s',
'./config/archs/darwin64-x86_64-cc/asm/crypto/bn/rsaz-avx2.s', './config/archs/darwin64-x86_64-cc/asm/crypto/bn/rsaz-avx2.s',
'./config/archs/darwin64-x86_64-cc/asm/crypto/bn/rsaz-x86_64.s', './config/archs/darwin64-x86_64-cc/asm/crypto/bn/rsaz-x86_64.s',
@ -722,9 +722,7 @@
'KECCAK1600_ASM', 'KECCAK1600_ASM',
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'BSAES_ASM',
'GHASH_ASM', 'GHASH_ASM',
'ECP_NISTZ256_ASM', 'ECP_NISTZ256_ASM',
'X25519_ASM', 'X25519_ASM',

View File

@ -48,7 +48,7 @@ our %config = (
export_var_as_fn => "0", export_var_as_fn => "0",
includes => [ ], includes => [ ],
lflags => [ ], lflags => [ ],
lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_MONT5", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "KECCAK1600_ASM", "RC4_ASM", "MD5_ASM", "AES_ASM", "VPAES_ASM", "BSAES_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "X25519_ASM", "POLY1305_ASM" ], lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_MONT5", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "KECCAK1600_ASM", "RC4_ASM", "MD5_ASM", "VPAES_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "X25519_ASM", "POLY1305_ASM" ],
libdir => "", libdir => "",
major => "1", major => "1",
makedepprog => "\$(CROSS_COMPILE)../config/fake_gcc.pl", makedepprog => "\$(CROSS_COMPILE)../config/fake_gcc.pl",
@ -111,8 +111,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "darwin64-x86_64-cc", target => "darwin64-x86_64-cc",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -124,8 +124,8 @@ our %target = (
RANLIB => "ranlib -c", RANLIB => "ranlib -c",
RC => "windres", RC => "windres",
_conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ], _conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ],
aes_asm_src => "aes-x86_64.s vpaes-x86_64.s bsaes-x86_64.s aesni-x86_64.s aesni-sha1-x86_64.s aesni-sha256-x86_64.s aesni-mb-x86_64.s", 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",
aes_obj => "aes-x86_64.o vpaes-x86_64.o bsaes-x86_64.o aesni-x86_64.o aesni-sha1-x86_64.o aesni-sha256-x86_64.o aesni-mb-x86_64.o", aes_obj => "aes_core.o aes_cbc.o vpaes-x86_64.o aesni-x86_64.o aesni-sha1-x86_64.o aesni-sha256-x86_64.o aesni-mb-x86_64.o",
apps_aux_src => "", apps_aux_src => "",
apps_init_src => "", apps_init_src => "",
apps_obj => "", apps_obj => "",
@ -1684,8 +1684,9 @@ our %unified_info = (
{ {
"deps" => "deps" =>
[ [
"crypto/aes/aes-x86_64.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -1695,7 +1696,6 @@ our %unified_info = (
"crypto/aes/aesni-sha1-x86_64.o", "crypto/aes/aesni-sha1-x86_64.o",
"crypto/aes/aesni-sha256-x86_64.o", "crypto/aes/aesni-sha256-x86_64.o",
"crypto/aes/aesni-x86_64.o", "crypto/aes/aesni-x86_64.o",
"crypto/aes/bsaes-x86_64.o",
"crypto/aes/vpaes-x86_64.o", "crypto/aes/vpaes-x86_64.o",
], ],
"products" => "products" =>
@ -3250,6 +3250,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -4879,7 +4880,7 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/aes/aes-x86_64.o" => "crypto/aes/aes_cbc.o" =>
[ [
".", ".",
"crypto/include", "crypto/include",
@ -4891,6 +4892,12 @@ our %unified_info = (
"crypto/include", "crypto/include",
"include", "include",
], ],
"crypto/aes/aes_core.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
".", ".",
@ -4961,12 +4968,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/aes/bsaes-x86_64.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/vpaes-x86_64.o" => "crypto/aes/vpaes-x86_64.o" =>
[ [
".", ".",
@ -7929,10 +7930,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -10073,6 +10070,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -10706,14 +10707,18 @@ our %unified_info = (
[ [
"apps/x509.c", "apps/x509.c",
], ],
"crypto/aes/aes-x86_64.o" => "crypto/aes/aes_cbc.o" =>
[ [
"crypto/aes/aes-x86_64.s", "crypto/aes/aes_cbc.c",
], ],
"crypto/aes/aes_cfb.o" => "crypto/aes/aes_cfb.o" =>
[ [
"crypto/aes/aes_cfb.c", "crypto/aes/aes_cfb.c",
], ],
"crypto/aes/aes_core.o" =>
[
"crypto/aes/aes_core.c",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
"crypto/aes/aes_ecb.c", "crypto/aes/aes_ecb.c",
@ -10750,10 +10755,6 @@ our %unified_info = (
[ [
"crypto/aes/aesni-x86_64.s", "crypto/aes/aesni-x86_64.s",
], ],
"crypto/aes/bsaes-x86_64.o" =>
[
"crypto/aes/bsaes-x86_64.s",
],
"crypto/aes/vpaes-x86_64.o" => "crypto/aes/vpaes-x86_64.o" =>
[ [
"crypto/aes/vpaes-x86_64.s", "crypto/aes/vpaes-x86_64.s",
@ -13447,8 +13448,9 @@ our %unified_info = (
], ],
"libcrypto" => "libcrypto" =>
[ [
"crypto/aes/aes-x86_64.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -13458,7 +13460,6 @@ our %unified_info = (
"crypto/aes/aesni-sha1-x86_64.o", "crypto/aes/aesni-sha1-x86_64.o",
"crypto/aes/aesni-sha256-x86_64.o", "crypto/aes/aesni-sha256-x86_64.o",
"crypto/aes/aesni-x86_64.o", "crypto/aes/aesni-x86_64.o",
"crypto/aes/bsaes-x86_64.o",
"crypto/aes/vpaes-x86_64.o", "crypto/aes/vpaes-x86_64.o",
"crypto/aria/aria.o", "crypto/aria/aria.o",
"crypto/asn1/a_bitstr.o", "crypto/asn1/a_bitstr.o",
@ -15361,6 +15362,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15706,6 +15708,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: darwin64-x86_64-cc" #define PLATFORM "platform: darwin64-x86_64-cc"
#define DATE "built on: Wed Jun 12 20:53:57 2019 UTC" #define DATE "built on: Fri Sep 13 15:58:21 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a
@ -36,12 +36,11 @@ static const char compiler_flags[] = {
'S','H','A','2','5','6','_','A','S','M',' ','-','D','S','H','A', 'S','H','A','2','5','6','_','A','S','M',' ','-','D','S','H','A',
'5','1','2','_','A','S','M',' ','-','D','K','E','C','C','A','K', '5','1','2','_','A','S','M',' ','-','D','K','E','C','C','A','K',
'1','6','0','0','_','A','S','M',' ','-','D','R','C','4','_','A', '1','6','0','0','_','A','S','M',' ','-','D','R','C','4','_','A',
'S','M',' ','-','D','M','D','5','_','A','S','M',' ','-','D','A', 'S','M',' ','-','D','M','D','5','_','A','S','M',' ','-','D','V',
'E','S','_','A','S','M',' ','-','D','V','P','A','E','S','_','A', 'P','A','E','S','_','A','S','M',' ','-','D','G','H','A','S','H',
'S','M',' ','-','D','B','S','A','E','S','_','A','S','M',' ','-', '_','A','S','M',' ','-','D','E','C','P','_','N','I','S','T','Z',
'D','G','H','A','S','H','_','A','S','M',' ','-','D','E','C','P', '2','5','6','_','A','S','M',' ','-','D','X','2','5','5','1','9',
'_','N','I','S','T','Z','2','5','6','_','A','S','M',' ','-','D', '_','A','S','M',' ','-','D','P','O','L','Y','1','3','0','5','_',
'X','2','5','5','1','9','_','A','S','M',' ','-','D','P','O','L', 'A','S','M',' ','-','D','_','R','E','E','N','T','R','A','N','T',
'Y','1','3','0','5','_','A','S','M',' ','-','D','_','R','E','E', ' ','-','D','N','D','E','B','U','G','\0'
'N','T','R','A','N','T',' ','-','D','N','D','E','B','U','G','\0'
}; };

View File

@ -15,9 +15,7 @@
'KECCAK1600_ASM', 'KECCAK1600_ASM',
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'BSAES_ASM',
'GHASH_ASM', 'GHASH_ASM',
'ECP_NISTZ256_ASM', 'ECP_NISTZ256_ASM',
'X25519_ASM', 'X25519_ASM',

View File

@ -45,7 +45,9 @@
'openssl/ssl/t1_trce.c', 'openssl/ssl/t1_trce.c',
'openssl/ssl/tls13_enc.c', 'openssl/ssl/tls13_enc.c',
'openssl/ssl/tls_srp.c', 'openssl/ssl/tls_srp.c',
'openssl/crypto/aes/aes_cbc.c',
'openssl/crypto/aes/aes_cfb.c', 'openssl/crypto/aes/aes_cfb.c',
'openssl/crypto/aes/aes_core.c',
'openssl/crypto/aes/aes_ecb.c', 'openssl/crypto/aes/aes_ecb.c',
'openssl/crypto/aes/aes_ige.c', 'openssl/crypto/aes/aes_ige.c',
'openssl/crypto/aes/aes_misc.c', 'openssl/crypto/aes/aes_misc.c',
@ -675,12 +677,10 @@
'openssl/engines/e_padlock.c', 'openssl/engines/e_padlock.c',
], ],
'openssl_sources_darwin64-x86_64-cc': [ 'openssl_sources_darwin64-x86_64-cc': [
'./config/archs/darwin64-x86_64-cc/asm_avx2/crypto/aes/aes-x86_64.s',
'./config/archs/darwin64-x86_64-cc/asm_avx2/crypto/aes/aesni-mb-x86_64.s', './config/archs/darwin64-x86_64-cc/asm_avx2/crypto/aes/aesni-mb-x86_64.s',
'./config/archs/darwin64-x86_64-cc/asm_avx2/crypto/aes/aesni-sha1-x86_64.s', './config/archs/darwin64-x86_64-cc/asm_avx2/crypto/aes/aesni-sha1-x86_64.s',
'./config/archs/darwin64-x86_64-cc/asm_avx2/crypto/aes/aesni-sha256-x86_64.s', './config/archs/darwin64-x86_64-cc/asm_avx2/crypto/aes/aesni-sha256-x86_64.s',
'./config/archs/darwin64-x86_64-cc/asm_avx2/crypto/aes/aesni-x86_64.s', './config/archs/darwin64-x86_64-cc/asm_avx2/crypto/aes/aesni-x86_64.s',
'./config/archs/darwin64-x86_64-cc/asm_avx2/crypto/aes/bsaes-x86_64.s',
'./config/archs/darwin64-x86_64-cc/asm_avx2/crypto/aes/vpaes-x86_64.s', './config/archs/darwin64-x86_64-cc/asm_avx2/crypto/aes/vpaes-x86_64.s',
'./config/archs/darwin64-x86_64-cc/asm_avx2/crypto/bn/rsaz-avx2.s', './config/archs/darwin64-x86_64-cc/asm_avx2/crypto/bn/rsaz-avx2.s',
'./config/archs/darwin64-x86_64-cc/asm_avx2/crypto/bn/rsaz-x86_64.s', './config/archs/darwin64-x86_64-cc/asm_avx2/crypto/bn/rsaz-x86_64.s',
@ -722,9 +722,7 @@
'KECCAK1600_ASM', 'KECCAK1600_ASM',
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'BSAES_ASM',
'GHASH_ASM', 'GHASH_ASM',
'ECP_NISTZ256_ASM', 'ECP_NISTZ256_ASM',
'X25519_ASM', 'X25519_ASM',

View File

@ -110,8 +110,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "darwin64-x86_64-cc", target => "darwin64-x86_64-cc",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -3212,6 +3212,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -7801,10 +7802,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -9897,6 +9894,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -15070,6 +15071,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15415,6 +15417,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: darwin64-x86_64-cc" #define PLATFORM "platform: darwin64-x86_64-cc"
#define DATE "built on: Wed Jun 12 20:54:05 2019 UTC" #define DATE "built on: Fri Sep 13 15:58:36 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a

View File

@ -111,8 +111,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "linux-aarch64", target => "linux-aarch64",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -3237,6 +3237,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -7868,10 +7869,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -9973,6 +9970,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -15201,6 +15202,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15546,6 +15548,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: linux-aarch64" #define PLATFORM "platform: linux-aarch64"
#define DATE "built on: Wed Jun 12 20:54:17 2019 UTC" #define DATE "built on: Fri Sep 13 15:58:56 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a

View File

@ -844,7 +844,7 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v1.16b,v1.16b,v31.16b eor v1.16b,v1.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
@ -857,7 +857,7 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v3.16b,v3.16b,v31.16b eor v3.16b,v3.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
@ -870,7 +870,7 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v5.16b,v5.16b,v31.16b eor v5.16b,v5.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
@ -883,7 +883,7 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v7.16b,v7.16b,v31.16b eor v7.16b,v7.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
@ -896,7 +896,7 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v9.16b,v9.16b,v31.16b eor v9.16b,v9.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
@ -909,7 +909,7 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v11.16b,v11.16b,v31.16b eor v11.16b,v11.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
@ -922,7 +922,7 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v13.16b,v13.16b,v31.16b eor v13.16b,v13.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
@ -935,7 +935,7 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v15.16b,v15.16b,v31.16b eor v15.16b,v15.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
@ -948,7 +948,7 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v17.16b,v17.16b,v31.16b eor v17.16b,v17.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
@ -961,7 +961,7 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v19.16b,v19.16b,v31.16b eor v19.16b,v19.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
@ -974,7 +974,7 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v21.16b,v21.16b,v31.16b eor v21.16b,v21.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
@ -987,13 +987,13 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v23.16b,v23.16b,v31.16b eor v23.16b,v23.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v24.16b,v24.16b,v31.16b eor v24.16b,v24.16b,v31.16b

View File

@ -111,8 +111,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "linux-aarch64", target => "linux-aarch64",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -3237,6 +3237,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -7868,10 +7869,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -9973,6 +9970,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -15201,6 +15202,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15546,6 +15548,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: linux-aarch64" #define PLATFORM "platform: linux-aarch64"
#define DATE "built on: Wed Jun 12 20:54:20 2019 UTC" #define DATE "built on: Fri Sep 13 15:59:02 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a

View File

@ -844,7 +844,7 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v1.16b,v1.16b,v31.16b eor v1.16b,v1.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
@ -857,7 +857,7 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v3.16b,v3.16b,v31.16b eor v3.16b,v3.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
@ -870,7 +870,7 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v5.16b,v5.16b,v31.16b eor v5.16b,v5.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
@ -883,7 +883,7 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v7.16b,v7.16b,v31.16b eor v7.16b,v7.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
@ -896,7 +896,7 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v9.16b,v9.16b,v31.16b eor v9.16b,v9.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
@ -909,7 +909,7 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v11.16b,v11.16b,v31.16b eor v11.16b,v11.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
@ -922,7 +922,7 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v13.16b,v13.16b,v31.16b eor v13.16b,v13.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
@ -935,7 +935,7 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v15.16b,v15.16b,v31.16b eor v15.16b,v15.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
@ -948,7 +948,7 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v17.16b,v17.16b,v31.16b eor v17.16b,v17.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
@ -961,7 +961,7 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v19.16b,v19.16b,v31.16b eor v19.16b,v19.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
@ -974,7 +974,7 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v21.16b,v21.16b,v31.16b eor v21.16b,v21.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
@ -987,13 +987,13 @@ SHA3_absorb_cext:
blo .Lprocess_block_ce blo .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v23.16b,v23.16b,v31.16b eor v23.16b,v23.16b,v31.16b
beq .Lprocess_block_ce beq .Lprocess_block_ce
ldr d31,[x1],#8 // *inp++ ldr d31,[x1],#8 // *inp++
#ifdef __AARCH64EB__ #ifdef __AARCH64EB__
rev v31.16b,v31.16b rev64 v31.16b,v31.16b
#endif #endif
eor v24.16b,v24.16b,v31.16b eor v24.16b,v24.16b,v31.16b

View File

@ -111,8 +111,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "linux-aarch64", target => "linux-aarch64",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -3225,6 +3225,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -7826,10 +7827,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -9922,6 +9919,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -15095,6 +15096,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15440,6 +15442,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: linux-aarch64" #define PLATFORM "platform: linux-aarch64"
#define DATE "built on: Wed Jun 12 20:54:24 2019 UTC" #define DATE "built on: Fri Sep 13 15:59:08 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a

View File

@ -111,8 +111,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "linux-armv4", target => "linux-armv4",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -3239,6 +3239,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -7867,10 +7868,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -9969,6 +9966,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -15207,6 +15208,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15552,6 +15554,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: linux-armv4" #define PLATFORM "platform: linux-armv4"
#define DATE "built on: Wed Jun 12 20:54:26 2019 UTC" #define DATE "built on: Fri Sep 13 15:59:11 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a

View File

@ -2200,9 +2200,9 @@ KeccakF1600_neon:
.align 4 .align 4
.Loop_neon: .Loop_neon:
@ Theta @ Theta
vst1.64 {q4}, [r0:64] @ offload A[0..1][4] vst1.64 {q4}, [r0,:64] @ offload A[0..1][4]
veor q13, q0, q5 @ A[0..1][0]^A[2..3][0] veor q13, q0, q5 @ A[0..1][0]^A[2..3][0]
vst1.64 {d18}, [r1:64] @ offload A[2][4] vst1.64 {d18}, [r1,:64] @ offload A[2][4]
veor q14, q1, q6 @ A[0..1][1]^A[2..3][1] veor q14, q1, q6 @ A[0..1][1]^A[2..3][1]
veor q15, q2, q7 @ A[0..1][2]^A[2..3][2] veor q15, q2, q7 @ A[0..1][2]^A[2..3][2]
veor d26, d26, d27 @ C[0]=A[0][0]^A[1][0]^A[2][0]^A[3][0] veor d26, d26, d27 @ C[0]=A[0][0]^A[1][0]^A[2][0]^A[3][0]
@ -2245,10 +2245,10 @@ KeccakF1600_neon:
veor d16, d16, d28 @ A[2][3] ^= C[2] veor d16, d16, d28 @ A[2][3] ^= C[2]
veor d17, d17, d28 @ A[3][3] ^= C[2] veor d17, d17, d28 @ A[3][3] ^= C[2]
veor d23, d23, d28 @ A[4][3] ^= C[2] veor d23, d23, d28 @ A[4][3] ^= C[2]
vld1.64 {q4}, [r0:64] @ restore A[0..1][4] vld1.64 {q4}, [r0,:64] @ restore A[0..1][4]
vmov d28, d29 vmov d28, d29
vld1.64 {d18}, [r1:64] @ restore A[2][4] vld1.64 {d18}, [r1,:64] @ restore A[2][4]
veor q2, q2, q13 @ A[0..1][2] ^= D[2] veor q2, q2, q13 @ A[0..1][2] ^= D[2]
veor q7, q7, q13 @ A[2..3][2] ^= D[2] veor q7, q7, q13 @ A[2..3][2] ^= D[2]
veor d22, d22, d27 @ A[4][2] ^= D[2] veor d22, d22, d27 @ A[4][2] ^= D[2]
@ -2323,7 +2323,7 @@ KeccakF1600_neon:
veor q13, q13, q0 @ A[0..1][0] ^ (~A[0..1][1] & A[0..1][2]) veor q13, q13, q0 @ A[0..1][0] ^ (~A[0..1][1] & A[0..1][2])
veor q14, q14, q1 @ A[0..1][1] ^ (~A[0..1][2] & A[0..1][3]) veor q14, q14, q1 @ A[0..1][1] ^ (~A[0..1][2] & A[0..1][3])
veor q2, q2, q15 @ A[0..1][2] ^= (~A[0..1][3] & A[0..1][4]) veor q2, q2, q15 @ A[0..1][2] ^= (~A[0..1][3] & A[0..1][4])
vst1.64 {q13}, [r0:64] @ offload A[0..1][0] vst1.64 {q13}, [r0,:64] @ offload A[0..1][0]
vbic q13, q0, q4 vbic q13, q0, q4
vbic q15, q1, q0 vbic q15, q1, q0
vmov q1, q14 @ A[0..1][1] vmov q1, q14 @ A[0..1][1]
@ -2344,10 +2344,10 @@ KeccakF1600_neon:
vmov q14, q10 @ A[4][0..1] vmov q14, q10 @ A[4][0..1]
veor q9, q9, q13 @ A[2..3][4] ^= (~A[2..3][0] & A[2..3][1]) veor q9, q9, q13 @ A[2..3][4] ^= (~A[2..3][0] & A[2..3][1])
vld1.64 d25, [r2:64]! @ Iota[i++] vld1.64 d25, [r2,:64]! @ Iota[i++]
vbic d26, d22, d21 vbic d26, d22, d21
vbic d27, d23, d22 vbic d27, d23, d22
vld1.64 {q0}, [r0:64] @ restore A[0..1][0] vld1.64 {q0}, [r0,:64] @ restore A[0..1][0]
veor d20, d20, d26 @ A[4][0] ^= (~A[4][1] & A[4][2]) veor d20, d20, d26 @ A[4][0] ^= (~A[4][1] & A[4][2])
vbic d26, d24, d23 vbic d26, d24, d23
veor d21, d21, d27 @ A[4][1] ^= (~A[4][2] & A[4][3]) veor d21, d21, d27 @ A[4][1] ^= (~A[4][2] & A[4][3])
@ -2375,32 +2375,32 @@ SHA3_absorb_neon:
mov r5, r2 @ len mov r5, r2 @ len
mov r6, r3 @ bsz mov r6, r3 @ bsz
vld1.32 {d0}, [r0:64]! @ A[0][0] vld1.32 {d0}, [r0,:64]! @ A[0][0]
vld1.32 {d2}, [r0:64]! @ A[0][1] vld1.32 {d2}, [r0,:64]! @ A[0][1]
vld1.32 {d4}, [r0:64]! @ A[0][2] vld1.32 {d4}, [r0,:64]! @ A[0][2]
vld1.32 {d6}, [r0:64]! @ A[0][3] vld1.32 {d6}, [r0,:64]! @ A[0][3]
vld1.32 {d8}, [r0:64]! @ A[0][4] vld1.32 {d8}, [r0,:64]! @ A[0][4]
vld1.32 {d1}, [r0:64]! @ A[1][0] vld1.32 {d1}, [r0,:64]! @ A[1][0]
vld1.32 {d3}, [r0:64]! @ A[1][1] vld1.32 {d3}, [r0,:64]! @ A[1][1]
vld1.32 {d5}, [r0:64]! @ A[1][2] vld1.32 {d5}, [r0,:64]! @ A[1][2]
vld1.32 {d7}, [r0:64]! @ A[1][3] vld1.32 {d7}, [r0,:64]! @ A[1][3]
vld1.32 {d9}, [r0:64]! @ A[1][4] vld1.32 {d9}, [r0,:64]! @ A[1][4]
vld1.32 {d10}, [r0:64]! @ A[2][0] vld1.32 {d10}, [r0,:64]! @ A[2][0]
vld1.32 {d12}, [r0:64]! @ A[2][1] vld1.32 {d12}, [r0,:64]! @ A[2][1]
vld1.32 {d14}, [r0:64]! @ A[2][2] vld1.32 {d14}, [r0,:64]! @ A[2][2]
vld1.32 {d16}, [r0:64]! @ A[2][3] vld1.32 {d16}, [r0,:64]! @ A[2][3]
vld1.32 {d18}, [r0:64]! @ A[2][4] vld1.32 {d18}, [r0,:64]! @ A[2][4]
vld1.32 {d11}, [r0:64]! @ A[3][0] vld1.32 {d11}, [r0,:64]! @ A[3][0]
vld1.32 {d13}, [r0:64]! @ A[3][1] vld1.32 {d13}, [r0,:64]! @ A[3][1]
vld1.32 {d15}, [r0:64]! @ A[3][2] vld1.32 {d15}, [r0,:64]! @ A[3][2]
vld1.32 {d17}, [r0:64]! @ A[3][3] vld1.32 {d17}, [r0,:64]! @ A[3][3]
vld1.32 {d19}, [r0:64]! @ A[3][4] vld1.32 {d19}, [r0,:64]! @ A[3][4]
vld1.32 {d20,d21,d22,d23}, [r0:64]! @ A[4][0..3] vld1.32 {d20,d21,d22,d23}, [r0,:64]! @ A[4][0..3]
vld1.32 {d24}, [r0:64] @ A[4][4] vld1.32 {d24}, [r0,:64] @ A[4][4]
sub r0, r0, #24*8 @ rewind sub r0, r0, #24*8 @ rewind
b .Loop_absorb_neon b .Loop_absorb_neon
@ -2507,32 +2507,32 @@ SHA3_absorb_neon:
.align 4 .align 4
.Labsorbed_neon: .Labsorbed_neon:
vst1.32 {d0}, [r0:64]! @ A[0][0..4] vst1.32 {d0}, [r0,:64]! @ A[0][0..4]
vst1.32 {d2}, [r0:64]! vst1.32 {d2}, [r0,:64]!
vst1.32 {d4}, [r0:64]! vst1.32 {d4}, [r0,:64]!
vst1.32 {d6}, [r0:64]! vst1.32 {d6}, [r0,:64]!
vst1.32 {d8}, [r0:64]! vst1.32 {d8}, [r0,:64]!
vst1.32 {d1}, [r0:64]! @ A[1][0..4] vst1.32 {d1}, [r0,:64]! @ A[1][0..4]
vst1.32 {d3}, [r0:64]! vst1.32 {d3}, [r0,:64]!
vst1.32 {d5}, [r0:64]! vst1.32 {d5}, [r0,:64]!
vst1.32 {d7}, [r0:64]! vst1.32 {d7}, [r0,:64]!
vst1.32 {d9}, [r0:64]! vst1.32 {d9}, [r0,:64]!
vst1.32 {d10}, [r0:64]! @ A[2][0..4] vst1.32 {d10}, [r0,:64]! @ A[2][0..4]
vst1.32 {d12}, [r0:64]! vst1.32 {d12}, [r0,:64]!
vst1.32 {d14}, [r0:64]! vst1.32 {d14}, [r0,:64]!
vst1.32 {d16}, [r0:64]! vst1.32 {d16}, [r0,:64]!
vst1.32 {d18}, [r0:64]! vst1.32 {d18}, [r0,:64]!
vst1.32 {d11}, [r0:64]! @ A[3][0..4] vst1.32 {d11}, [r0,:64]! @ A[3][0..4]
vst1.32 {d13}, [r0:64]! vst1.32 {d13}, [r0,:64]!
vst1.32 {d15}, [r0:64]! vst1.32 {d15}, [r0,:64]!
vst1.32 {d17}, [r0:64]! vst1.32 {d17}, [r0,:64]!
vst1.32 {d19}, [r0:64]! vst1.32 {d19}, [r0,:64]!
vst1.32 {d20,d21,d22,d23}, [r0:64]! @ A[4][0..4] vst1.32 {d20,d21,d22,d23}, [r0,:64]! @ A[4][0..4]
vst1.32 {d24}, [r0:64] vst1.32 {d24}, [r0,:64]
mov r0, r5 @ return value mov r0, r5 @ return value
vldmia sp!, {d8,d9,d10,d11,d12,d13,d14,d15} vldmia sp!, {d8,d9,d10,d11,d12,d13,d14,d15}
@ -2567,64 +2567,64 @@ SHA3_squeeze_neon:
vstmdb sp!, {d8,d9,d10,d11,d12,d13,d14,d15} vstmdb sp!, {d8,d9,d10,d11,d12,d13,d14,d15}
vld1.32 {d0}, [r0:64]! @ A[0][0..4] vld1.32 {d0}, [r0,:64]! @ A[0][0..4]
vld1.32 {d2}, [r0:64]! vld1.32 {d2}, [r0,:64]!
vld1.32 {d4}, [r0:64]! vld1.32 {d4}, [r0,:64]!
vld1.32 {d6}, [r0:64]! vld1.32 {d6}, [r0,:64]!
vld1.32 {d8}, [r0:64]! vld1.32 {d8}, [r0,:64]!
vld1.32 {d1}, [r0:64]! @ A[1][0..4] vld1.32 {d1}, [r0,:64]! @ A[1][0..4]
vld1.32 {d3}, [r0:64]! vld1.32 {d3}, [r0,:64]!
vld1.32 {d5}, [r0:64]! vld1.32 {d5}, [r0,:64]!
vld1.32 {d7}, [r0:64]! vld1.32 {d7}, [r0,:64]!
vld1.32 {d9}, [r0:64]! vld1.32 {d9}, [r0,:64]!
vld1.32 {d10}, [r0:64]! @ A[2][0..4] vld1.32 {d10}, [r0,:64]! @ A[2][0..4]
vld1.32 {d12}, [r0:64]! vld1.32 {d12}, [r0,:64]!
vld1.32 {d14}, [r0:64]! vld1.32 {d14}, [r0,:64]!
vld1.32 {d16}, [r0:64]! vld1.32 {d16}, [r0,:64]!
vld1.32 {d18}, [r0:64]! vld1.32 {d18}, [r0,:64]!
vld1.32 {d11}, [r0:64]! @ A[3][0..4] vld1.32 {d11}, [r0,:64]! @ A[3][0..4]
vld1.32 {d13}, [r0:64]! vld1.32 {d13}, [r0,:64]!
vld1.32 {d15}, [r0:64]! vld1.32 {d15}, [r0,:64]!
vld1.32 {d17}, [r0:64]! vld1.32 {d17}, [r0,:64]!
vld1.32 {d19}, [r0:64]! vld1.32 {d19}, [r0,:64]!
vld1.32 {d20,d21,d22,d23}, [r0:64]! @ A[4][0..4] vld1.32 {d20,d21,d22,d23}, [r0,:64]! @ A[4][0..4]
vld1.32 {d24}, [r0:64] vld1.32 {d24}, [r0,:64]
sub r0, r0, #24*8 @ rewind sub r0, r0, #24*8 @ rewind
bl KeccakF1600_neon bl KeccakF1600_neon
mov r12, r0 @ A_flat mov r12, r0 @ A_flat
vst1.32 {d0}, [r0:64]! @ A[0][0..4] vst1.32 {d0}, [r0,:64]! @ A[0][0..4]
vst1.32 {d2}, [r0:64]! vst1.32 {d2}, [r0,:64]!
vst1.32 {d4}, [r0:64]! vst1.32 {d4}, [r0,:64]!
vst1.32 {d6}, [r0:64]! vst1.32 {d6}, [r0,:64]!
vst1.32 {d8}, [r0:64]! vst1.32 {d8}, [r0,:64]!
vst1.32 {d1}, [r0:64]! @ A[1][0..4] vst1.32 {d1}, [r0,:64]! @ A[1][0..4]
vst1.32 {d3}, [r0:64]! vst1.32 {d3}, [r0,:64]!
vst1.32 {d5}, [r0:64]! vst1.32 {d5}, [r0,:64]!
vst1.32 {d7}, [r0:64]! vst1.32 {d7}, [r0,:64]!
vst1.32 {d9}, [r0:64]! vst1.32 {d9}, [r0,:64]!
vst1.32 {d10}, [r0:64]! @ A[2][0..4] vst1.32 {d10}, [r0,:64]! @ A[2][0..4]
vst1.32 {d12}, [r0:64]! vst1.32 {d12}, [r0,:64]!
vst1.32 {d14}, [r0:64]! vst1.32 {d14}, [r0,:64]!
vst1.32 {d16}, [r0:64]! vst1.32 {d16}, [r0,:64]!
vst1.32 {d18}, [r0:64]! vst1.32 {d18}, [r0,:64]!
vst1.32 {d11}, [r0:64]! @ A[3][0..4] vst1.32 {d11}, [r0,:64]! @ A[3][0..4]
vst1.32 {d13}, [r0:64]! vst1.32 {d13}, [r0,:64]!
vst1.32 {d15}, [r0:64]! vst1.32 {d15}, [r0,:64]!
vst1.32 {d17}, [r0:64]! vst1.32 {d17}, [r0,:64]!
vst1.32 {d19}, [r0:64]! vst1.32 {d19}, [r0,:64]!
vst1.32 {d20,d21,d22,d23}, [r0:64]! @ A[4][0..4] vst1.32 {d20,d21,d22,d23}, [r0,:64]! @ A[4][0..4]
mov r14, r6 @ bsz mov r14, r6 @ bsz
vst1.32 {d24}, [r0:64] vst1.32 {d24}, [r0,:64]
mov r0, r12 @ rewind mov r0, r12 @ rewind
vldmia sp!, {d8,d9,d10,d11,d12,d13,d14,d15} vldmia sp!, {d8,d9,d10,d11,d12,d13,d14,d15}

View File

@ -111,8 +111,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "linux-armv4", target => "linux-armv4",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -3239,6 +3239,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -7867,10 +7868,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -9969,6 +9966,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -15207,6 +15208,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15552,6 +15554,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: linux-armv4" #define PLATFORM "platform: linux-armv4"
#define DATE "built on: Wed Jun 12 20:54:29 2019 UTC" #define DATE "built on: Fri Sep 13 15:59:17 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a

View File

@ -2200,9 +2200,9 @@ KeccakF1600_neon:
.align 4 .align 4
.Loop_neon: .Loop_neon:
@ Theta @ Theta
vst1.64 {q4}, [r0:64] @ offload A[0..1][4] vst1.64 {q4}, [r0,:64] @ offload A[0..1][4]
veor q13, q0, q5 @ A[0..1][0]^A[2..3][0] veor q13, q0, q5 @ A[0..1][0]^A[2..3][0]
vst1.64 {d18}, [r1:64] @ offload A[2][4] vst1.64 {d18}, [r1,:64] @ offload A[2][4]
veor q14, q1, q6 @ A[0..1][1]^A[2..3][1] veor q14, q1, q6 @ A[0..1][1]^A[2..3][1]
veor q15, q2, q7 @ A[0..1][2]^A[2..3][2] veor q15, q2, q7 @ A[0..1][2]^A[2..3][2]
veor d26, d26, d27 @ C[0]=A[0][0]^A[1][0]^A[2][0]^A[3][0] veor d26, d26, d27 @ C[0]=A[0][0]^A[1][0]^A[2][0]^A[3][0]
@ -2245,10 +2245,10 @@ KeccakF1600_neon:
veor d16, d16, d28 @ A[2][3] ^= C[2] veor d16, d16, d28 @ A[2][3] ^= C[2]
veor d17, d17, d28 @ A[3][3] ^= C[2] veor d17, d17, d28 @ A[3][3] ^= C[2]
veor d23, d23, d28 @ A[4][3] ^= C[2] veor d23, d23, d28 @ A[4][3] ^= C[2]
vld1.64 {q4}, [r0:64] @ restore A[0..1][4] vld1.64 {q4}, [r0,:64] @ restore A[0..1][4]
vmov d28, d29 vmov d28, d29
vld1.64 {d18}, [r1:64] @ restore A[2][4] vld1.64 {d18}, [r1,:64] @ restore A[2][4]
veor q2, q2, q13 @ A[0..1][2] ^= D[2] veor q2, q2, q13 @ A[0..1][2] ^= D[2]
veor q7, q7, q13 @ A[2..3][2] ^= D[2] veor q7, q7, q13 @ A[2..3][2] ^= D[2]
veor d22, d22, d27 @ A[4][2] ^= D[2] veor d22, d22, d27 @ A[4][2] ^= D[2]
@ -2323,7 +2323,7 @@ KeccakF1600_neon:
veor q13, q13, q0 @ A[0..1][0] ^ (~A[0..1][1] & A[0..1][2]) veor q13, q13, q0 @ A[0..1][0] ^ (~A[0..1][1] & A[0..1][2])
veor q14, q14, q1 @ A[0..1][1] ^ (~A[0..1][2] & A[0..1][3]) veor q14, q14, q1 @ A[0..1][1] ^ (~A[0..1][2] & A[0..1][3])
veor q2, q2, q15 @ A[0..1][2] ^= (~A[0..1][3] & A[0..1][4]) veor q2, q2, q15 @ A[0..1][2] ^= (~A[0..1][3] & A[0..1][4])
vst1.64 {q13}, [r0:64] @ offload A[0..1][0] vst1.64 {q13}, [r0,:64] @ offload A[0..1][0]
vbic q13, q0, q4 vbic q13, q0, q4
vbic q15, q1, q0 vbic q15, q1, q0
vmov q1, q14 @ A[0..1][1] vmov q1, q14 @ A[0..1][1]
@ -2344,10 +2344,10 @@ KeccakF1600_neon:
vmov q14, q10 @ A[4][0..1] vmov q14, q10 @ A[4][0..1]
veor q9, q9, q13 @ A[2..3][4] ^= (~A[2..3][0] & A[2..3][1]) veor q9, q9, q13 @ A[2..3][4] ^= (~A[2..3][0] & A[2..3][1])
vld1.64 d25, [r2:64]! @ Iota[i++] vld1.64 d25, [r2,:64]! @ Iota[i++]
vbic d26, d22, d21 vbic d26, d22, d21
vbic d27, d23, d22 vbic d27, d23, d22
vld1.64 {q0}, [r0:64] @ restore A[0..1][0] vld1.64 {q0}, [r0,:64] @ restore A[0..1][0]
veor d20, d20, d26 @ A[4][0] ^= (~A[4][1] & A[4][2]) veor d20, d20, d26 @ A[4][0] ^= (~A[4][1] & A[4][2])
vbic d26, d24, d23 vbic d26, d24, d23
veor d21, d21, d27 @ A[4][1] ^= (~A[4][2] & A[4][3]) veor d21, d21, d27 @ A[4][1] ^= (~A[4][2] & A[4][3])
@ -2375,32 +2375,32 @@ SHA3_absorb_neon:
mov r5, r2 @ len mov r5, r2 @ len
mov r6, r3 @ bsz mov r6, r3 @ bsz
vld1.32 {d0}, [r0:64]! @ A[0][0] vld1.32 {d0}, [r0,:64]! @ A[0][0]
vld1.32 {d2}, [r0:64]! @ A[0][1] vld1.32 {d2}, [r0,:64]! @ A[0][1]
vld1.32 {d4}, [r0:64]! @ A[0][2] vld1.32 {d4}, [r0,:64]! @ A[0][2]
vld1.32 {d6}, [r0:64]! @ A[0][3] vld1.32 {d6}, [r0,:64]! @ A[0][3]
vld1.32 {d8}, [r0:64]! @ A[0][4] vld1.32 {d8}, [r0,:64]! @ A[0][4]
vld1.32 {d1}, [r0:64]! @ A[1][0] vld1.32 {d1}, [r0,:64]! @ A[1][0]
vld1.32 {d3}, [r0:64]! @ A[1][1] vld1.32 {d3}, [r0,:64]! @ A[1][1]
vld1.32 {d5}, [r0:64]! @ A[1][2] vld1.32 {d5}, [r0,:64]! @ A[1][2]
vld1.32 {d7}, [r0:64]! @ A[1][3] vld1.32 {d7}, [r0,:64]! @ A[1][3]
vld1.32 {d9}, [r0:64]! @ A[1][4] vld1.32 {d9}, [r0,:64]! @ A[1][4]
vld1.32 {d10}, [r0:64]! @ A[2][0] vld1.32 {d10}, [r0,:64]! @ A[2][0]
vld1.32 {d12}, [r0:64]! @ A[2][1] vld1.32 {d12}, [r0,:64]! @ A[2][1]
vld1.32 {d14}, [r0:64]! @ A[2][2] vld1.32 {d14}, [r0,:64]! @ A[2][2]
vld1.32 {d16}, [r0:64]! @ A[2][3] vld1.32 {d16}, [r0,:64]! @ A[2][3]
vld1.32 {d18}, [r0:64]! @ A[2][4] vld1.32 {d18}, [r0,:64]! @ A[2][4]
vld1.32 {d11}, [r0:64]! @ A[3][0] vld1.32 {d11}, [r0,:64]! @ A[3][0]
vld1.32 {d13}, [r0:64]! @ A[3][1] vld1.32 {d13}, [r0,:64]! @ A[3][1]
vld1.32 {d15}, [r0:64]! @ A[3][2] vld1.32 {d15}, [r0,:64]! @ A[3][2]
vld1.32 {d17}, [r0:64]! @ A[3][3] vld1.32 {d17}, [r0,:64]! @ A[3][3]
vld1.32 {d19}, [r0:64]! @ A[3][4] vld1.32 {d19}, [r0,:64]! @ A[3][4]
vld1.32 {d20,d21,d22,d23}, [r0:64]! @ A[4][0..3] vld1.32 {d20,d21,d22,d23}, [r0,:64]! @ A[4][0..3]
vld1.32 {d24}, [r0:64] @ A[4][4] vld1.32 {d24}, [r0,:64] @ A[4][4]
sub r0, r0, #24*8 @ rewind sub r0, r0, #24*8 @ rewind
b .Loop_absorb_neon b .Loop_absorb_neon
@ -2507,32 +2507,32 @@ SHA3_absorb_neon:
.align 4 .align 4
.Labsorbed_neon: .Labsorbed_neon:
vst1.32 {d0}, [r0:64]! @ A[0][0..4] vst1.32 {d0}, [r0,:64]! @ A[0][0..4]
vst1.32 {d2}, [r0:64]! vst1.32 {d2}, [r0,:64]!
vst1.32 {d4}, [r0:64]! vst1.32 {d4}, [r0,:64]!
vst1.32 {d6}, [r0:64]! vst1.32 {d6}, [r0,:64]!
vst1.32 {d8}, [r0:64]! vst1.32 {d8}, [r0,:64]!
vst1.32 {d1}, [r0:64]! @ A[1][0..4] vst1.32 {d1}, [r0,:64]! @ A[1][0..4]
vst1.32 {d3}, [r0:64]! vst1.32 {d3}, [r0,:64]!
vst1.32 {d5}, [r0:64]! vst1.32 {d5}, [r0,:64]!
vst1.32 {d7}, [r0:64]! vst1.32 {d7}, [r0,:64]!
vst1.32 {d9}, [r0:64]! vst1.32 {d9}, [r0,:64]!
vst1.32 {d10}, [r0:64]! @ A[2][0..4] vst1.32 {d10}, [r0,:64]! @ A[2][0..4]
vst1.32 {d12}, [r0:64]! vst1.32 {d12}, [r0,:64]!
vst1.32 {d14}, [r0:64]! vst1.32 {d14}, [r0,:64]!
vst1.32 {d16}, [r0:64]! vst1.32 {d16}, [r0,:64]!
vst1.32 {d18}, [r0:64]! vst1.32 {d18}, [r0,:64]!
vst1.32 {d11}, [r0:64]! @ A[3][0..4] vst1.32 {d11}, [r0,:64]! @ A[3][0..4]
vst1.32 {d13}, [r0:64]! vst1.32 {d13}, [r0,:64]!
vst1.32 {d15}, [r0:64]! vst1.32 {d15}, [r0,:64]!
vst1.32 {d17}, [r0:64]! vst1.32 {d17}, [r0,:64]!
vst1.32 {d19}, [r0:64]! vst1.32 {d19}, [r0,:64]!
vst1.32 {d20,d21,d22,d23}, [r0:64]! @ A[4][0..4] vst1.32 {d20,d21,d22,d23}, [r0,:64]! @ A[4][0..4]
vst1.32 {d24}, [r0:64] vst1.32 {d24}, [r0,:64]
mov r0, r5 @ return value mov r0, r5 @ return value
vldmia sp!, {d8,d9,d10,d11,d12,d13,d14,d15} vldmia sp!, {d8,d9,d10,d11,d12,d13,d14,d15}
@ -2567,64 +2567,64 @@ SHA3_squeeze_neon:
vstmdb sp!, {d8,d9,d10,d11,d12,d13,d14,d15} vstmdb sp!, {d8,d9,d10,d11,d12,d13,d14,d15}
vld1.32 {d0}, [r0:64]! @ A[0][0..4] vld1.32 {d0}, [r0,:64]! @ A[0][0..4]
vld1.32 {d2}, [r0:64]! vld1.32 {d2}, [r0,:64]!
vld1.32 {d4}, [r0:64]! vld1.32 {d4}, [r0,:64]!
vld1.32 {d6}, [r0:64]! vld1.32 {d6}, [r0,:64]!
vld1.32 {d8}, [r0:64]! vld1.32 {d8}, [r0,:64]!
vld1.32 {d1}, [r0:64]! @ A[1][0..4] vld1.32 {d1}, [r0,:64]! @ A[1][0..4]
vld1.32 {d3}, [r0:64]! vld1.32 {d3}, [r0,:64]!
vld1.32 {d5}, [r0:64]! vld1.32 {d5}, [r0,:64]!
vld1.32 {d7}, [r0:64]! vld1.32 {d7}, [r0,:64]!
vld1.32 {d9}, [r0:64]! vld1.32 {d9}, [r0,:64]!
vld1.32 {d10}, [r0:64]! @ A[2][0..4] vld1.32 {d10}, [r0,:64]! @ A[2][0..4]
vld1.32 {d12}, [r0:64]! vld1.32 {d12}, [r0,:64]!
vld1.32 {d14}, [r0:64]! vld1.32 {d14}, [r0,:64]!
vld1.32 {d16}, [r0:64]! vld1.32 {d16}, [r0,:64]!
vld1.32 {d18}, [r0:64]! vld1.32 {d18}, [r0,:64]!
vld1.32 {d11}, [r0:64]! @ A[3][0..4] vld1.32 {d11}, [r0,:64]! @ A[3][0..4]
vld1.32 {d13}, [r0:64]! vld1.32 {d13}, [r0,:64]!
vld1.32 {d15}, [r0:64]! vld1.32 {d15}, [r0,:64]!
vld1.32 {d17}, [r0:64]! vld1.32 {d17}, [r0,:64]!
vld1.32 {d19}, [r0:64]! vld1.32 {d19}, [r0,:64]!
vld1.32 {d20,d21,d22,d23}, [r0:64]! @ A[4][0..4] vld1.32 {d20,d21,d22,d23}, [r0,:64]! @ A[4][0..4]
vld1.32 {d24}, [r0:64] vld1.32 {d24}, [r0,:64]
sub r0, r0, #24*8 @ rewind sub r0, r0, #24*8 @ rewind
bl KeccakF1600_neon bl KeccakF1600_neon
mov r12, r0 @ A_flat mov r12, r0 @ A_flat
vst1.32 {d0}, [r0:64]! @ A[0][0..4] vst1.32 {d0}, [r0,:64]! @ A[0][0..4]
vst1.32 {d2}, [r0:64]! vst1.32 {d2}, [r0,:64]!
vst1.32 {d4}, [r0:64]! vst1.32 {d4}, [r0,:64]!
vst1.32 {d6}, [r0:64]! vst1.32 {d6}, [r0,:64]!
vst1.32 {d8}, [r0:64]! vst1.32 {d8}, [r0,:64]!
vst1.32 {d1}, [r0:64]! @ A[1][0..4] vst1.32 {d1}, [r0,:64]! @ A[1][0..4]
vst1.32 {d3}, [r0:64]! vst1.32 {d3}, [r0,:64]!
vst1.32 {d5}, [r0:64]! vst1.32 {d5}, [r0,:64]!
vst1.32 {d7}, [r0:64]! vst1.32 {d7}, [r0,:64]!
vst1.32 {d9}, [r0:64]! vst1.32 {d9}, [r0,:64]!
vst1.32 {d10}, [r0:64]! @ A[2][0..4] vst1.32 {d10}, [r0,:64]! @ A[2][0..4]
vst1.32 {d12}, [r0:64]! vst1.32 {d12}, [r0,:64]!
vst1.32 {d14}, [r0:64]! vst1.32 {d14}, [r0,:64]!
vst1.32 {d16}, [r0:64]! vst1.32 {d16}, [r0,:64]!
vst1.32 {d18}, [r0:64]! vst1.32 {d18}, [r0,:64]!
vst1.32 {d11}, [r0:64]! @ A[3][0..4] vst1.32 {d11}, [r0,:64]! @ A[3][0..4]
vst1.32 {d13}, [r0:64]! vst1.32 {d13}, [r0,:64]!
vst1.32 {d15}, [r0:64]! vst1.32 {d15}, [r0,:64]!
vst1.32 {d17}, [r0:64]! vst1.32 {d17}, [r0,:64]!
vst1.32 {d19}, [r0:64]! vst1.32 {d19}, [r0,:64]!
vst1.32 {d20,d21,d22,d23}, [r0:64]! @ A[4][0..4] vst1.32 {d20,d21,d22,d23}, [r0,:64]! @ A[4][0..4]
mov r14, r6 @ bsz mov r14, r6 @ bsz
vst1.32 {d24}, [r0:64] vst1.32 {d24}, [r0,:64]
mov r0, r12 @ rewind mov r0, r12 @ rewind
vldmia sp!, {d8,d9,d10,d11,d12,d13,d14,d15} vldmia sp!, {d8,d9,d10,d11,d12,d13,d14,d15}

View File

@ -111,8 +111,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "linux-armv4", target => "linux-armv4",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -3225,6 +3225,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -7826,10 +7827,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -9922,6 +9919,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -15095,6 +15096,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15440,6 +15442,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: linux-armv4" #define PLATFORM "platform: linux-armv4"
#define DATE "built on: Wed Jun 12 20:54:33 2019 UTC" #define DATE "built on: Fri Sep 13 15:59:23 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a

View File

@ -49,7 +49,7 @@ our %config = (
export_var_as_fn => "0", export_var_as_fn => "0",
includes => [ ], includes => [ ],
lflags => [ ], lflags => [ ],
lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_BN_ASM_PART_WORDS", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "RC4_ASM", "MD5_ASM", "RMD160_ASM", "AES_ASM", "VPAES_ASM", "WHIRLPOOL_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "POLY1305_ASM" ], lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_BN_ASM_PART_WORDS", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "RC4_ASM", "MD5_ASM", "RMD160_ASM", "VPAES_ASM", "WHIRLPOOL_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "POLY1305_ASM" ],
libdir => "", libdir => "",
major => "1", major => "1",
makedepprog => "\$(CROSS_COMPILE)gcc", makedepprog => "\$(CROSS_COMPILE)gcc",
@ -112,8 +112,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "linux-elf", target => "linux-elf",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -127,8 +127,8 @@ our %target = (
RANLIB => "ranlib", RANLIB => "ranlib",
RC => "windres", RC => "windres",
_conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ], _conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ],
aes_asm_src => "aes-586.s vpaes-x86.s aesni-x86.s", aes_asm_src => "aes_core.c aes_cbc.c vpaes-x86.s aesni-x86.s",
aes_obj => "aes-586.o vpaes-x86.o aesni-x86.o", aes_obj => "aes_core.o aes_cbc.o vpaes-x86.o aesni-x86.o",
apps_aux_src => "", apps_aux_src => "",
apps_init_src => "", apps_init_src => "",
apps_obj => "", apps_obj => "",
@ -1697,8 +1697,9 @@ our %unified_info = (
{ {
"deps" => "deps" =>
[ [
"crypto/aes/aes-586.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -3239,6 +3240,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -4864,12 +4866,6 @@ our %unified_info = (
"include", "include",
"apps", "apps",
], ],
"crypto/aes/aes-586.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes-armv4.o" => "crypto/aes/aes-armv4.o" =>
[ [
"crypto", "crypto",
@ -4886,12 +4882,24 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/aes/aes_cbc.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes_cfb.o" => "crypto/aes/aes_cfb.o" =>
[ [
".", ".",
"crypto/include", "crypto/include",
"include", "include",
], ],
"crypto/aes/aes_core.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
".", ".",
@ -7870,10 +7878,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -10008,6 +10012,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -10641,14 +10649,18 @@ our %unified_info = (
[ [
"apps/x509.c", "apps/x509.c",
], ],
"crypto/aes/aes-586.o" => "crypto/aes/aes_cbc.o" =>
[ [
"crypto/aes/aes-586.s", "crypto/aes/aes_cbc.c",
], ],
"crypto/aes/aes_cfb.o" => "crypto/aes/aes_cfb.o" =>
[ [
"crypto/aes/aes_cfb.c", "crypto/aes/aes_cfb.c",
], ],
"crypto/aes/aes_core.o" =>
[
"crypto/aes/aes_core.c",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
"crypto/aes/aes_ecb.c", "crypto/aes/aes_ecb.c",
@ -13338,8 +13350,9 @@ our %unified_info = (
], ],
"libcrypto" => "libcrypto" =>
[ [
"crypto/aes/aes-586.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -15241,6 +15254,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15586,6 +15600,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: linux-elf" #define PLATFORM "platform: linux-elf"
#define DATE "built on: Wed Jun 12 20:54:35 2019 UTC" #define DATE "built on: Fri Sep 13 15:59:27 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a
@ -38,10 +38,10 @@ static const char compiler_flags[] = {
'6','_','A','S','M',' ','-','D','S','H','A','5','1','2','_','A', '6','_','A','S','M',' ','-','D','S','H','A','5','1','2','_','A',
'S','M',' ','-','D','R','C','4','_','A','S','M',' ','-','D','M', 'S','M',' ','-','D','R','C','4','_','A','S','M',' ','-','D','M',
'D','5','_','A','S','M',' ','-','D','R','M','D','1','6','0','_', 'D','5','_','A','S','M',' ','-','D','R','M','D','1','6','0','_',
'A','S','M',' ','-','D','A','E','S','_','A','S','M',' ','-','D', 'A','S','M',' ','-','D','V','P','A','E','S','_','A','S','M',' ',
'V','P','A','E','S','_','A','S','M',' ','-','D','W','H','I','R', '-','D','W','H','I','R','L','P','O','O','L','_','A','S','M',' ',
'L','P','O','O','L','_','A','S','M',' ','-','D','G','H','A','S', '-','D','G','H','A','S','H','_','A','S','M',' ','-','D','E','C',
'H','_','A','S','M',' ','-','D','E','C','P','_','N','I','S','T', 'P','_','N','I','S','T','Z','2','5','6','_','A','S','M',' ','-',
'Z','2','5','6','_','A','S','M',' ','-','D','P','O','L','Y','1', 'D','P','O','L','Y','1','3','0','5','_','A','S','M',' ','-','D',
'3','0','5','_','A','S','M',' ','-','D','N','D','E','B','U','G','\0' 'N','D','E','B','U','G','\0'
}; };

View File

@ -16,7 +16,6 @@
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'RMD160_ASM', 'RMD160_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'WHIRLPOOL_ASM', 'WHIRLPOOL_ASM',
'GHASH_ASM', 'GHASH_ASM',

View File

@ -45,7 +45,9 @@
'openssl/ssl/t1_trce.c', 'openssl/ssl/t1_trce.c',
'openssl/ssl/tls13_enc.c', 'openssl/ssl/tls13_enc.c',
'openssl/ssl/tls_srp.c', 'openssl/ssl/tls_srp.c',
'openssl/crypto/aes/aes_cbc.c',
'openssl/crypto/aes/aes_cfb.c', 'openssl/crypto/aes/aes_cfb.c',
'openssl/crypto/aes/aes_core.c',
'openssl/crypto/aes/aes_ecb.c', 'openssl/crypto/aes/aes_ecb.c',
'openssl/crypto/aes/aes_ige.c', 'openssl/crypto/aes/aes_ige.c',
'openssl/crypto/aes/aes_misc.c', 'openssl/crypto/aes/aes_misc.c',
@ -671,7 +673,6 @@
'openssl/engines/e_padlock.c', 'openssl/engines/e_padlock.c',
], ],
'openssl_sources_linux-elf': [ 'openssl_sources_linux-elf': [
'./config/archs/linux-elf/asm/crypto/aes/aes-586.s',
'./config/archs/linux-elf/asm/crypto/aes/aesni-x86.s', './config/archs/linux-elf/asm/crypto/aes/aesni-x86.s',
'./config/archs/linux-elf/asm/crypto/aes/vpaes-x86.s', './config/archs/linux-elf/asm/crypto/aes/vpaes-x86.s',
'./config/archs/linux-elf/asm/crypto/bf/bf-586.s', './config/archs/linux-elf/asm/crypto/bf/bf-586.s',
@ -712,7 +713,6 @@
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'RMD160_ASM', 'RMD160_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'WHIRLPOOL_ASM', 'WHIRLPOOL_ASM',
'GHASH_ASM', 'GHASH_ASM',

View File

@ -49,7 +49,7 @@ our %config = (
export_var_as_fn => "0", export_var_as_fn => "0",
includes => [ ], includes => [ ],
lflags => [ ], lflags => [ ],
lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_BN_ASM_PART_WORDS", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "RC4_ASM", "MD5_ASM", "RMD160_ASM", "AES_ASM", "VPAES_ASM", "WHIRLPOOL_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "POLY1305_ASM" ], lib_defines => [ "OPENSSL_PIC", "OPENSSL_CPUID_OBJ", "OPENSSL_BN_ASM_PART_WORDS", "OPENSSL_IA32_SSE2", "OPENSSL_BN_ASM_MONT", "OPENSSL_BN_ASM_GF2m", "SHA1_ASM", "SHA256_ASM", "SHA512_ASM", "RC4_ASM", "MD5_ASM", "RMD160_ASM", "VPAES_ASM", "WHIRLPOOL_ASM", "GHASH_ASM", "ECP_NISTZ256_ASM", "POLY1305_ASM" ],
libdir => "", libdir => "",
major => "1", major => "1",
makedepprog => "\$(CROSS_COMPILE)../config/fake_gcc.pl", makedepprog => "\$(CROSS_COMPILE)../config/fake_gcc.pl",
@ -112,8 +112,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "linux-elf", target => "linux-elf",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -127,8 +127,8 @@ our %target = (
RANLIB => "ranlib", RANLIB => "ranlib",
RC => "windres", RC => "windres",
_conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ], _conf_fname_int => [ "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/00-base-templates.conf", "Configurations/00-base-templates.conf", "Configurations/10-main.conf", "Configurations/shared-info.pl" ],
aes_asm_src => "aes-586.s vpaes-x86.s aesni-x86.s", aes_asm_src => "aes_core.c aes_cbc.c vpaes-x86.s aesni-x86.s",
aes_obj => "aes-586.o vpaes-x86.o aesni-x86.o", aes_obj => "aes_core.o aes_cbc.o vpaes-x86.o aesni-x86.o",
apps_aux_src => "", apps_aux_src => "",
apps_init_src => "", apps_init_src => "",
apps_obj => "", apps_obj => "",
@ -1697,8 +1697,9 @@ our %unified_info = (
{ {
"deps" => "deps" =>
[ [
"crypto/aes/aes-586.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -3239,6 +3240,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -4864,12 +4866,6 @@ our %unified_info = (
"include", "include",
"apps", "apps",
], ],
"crypto/aes/aes-586.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes-armv4.o" => "crypto/aes/aes-armv4.o" =>
[ [
"crypto", "crypto",
@ -4886,12 +4882,24 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/aes/aes_cbc.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes_cfb.o" => "crypto/aes/aes_cfb.o" =>
[ [
".", ".",
"crypto/include", "crypto/include",
"include", "include",
], ],
"crypto/aes/aes_core.o" =>
[
".",
"crypto/include",
"include",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
".", ".",
@ -7870,10 +7878,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -10008,6 +10012,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -10641,14 +10649,18 @@ our %unified_info = (
[ [
"apps/x509.c", "apps/x509.c",
], ],
"crypto/aes/aes-586.o" => "crypto/aes/aes_cbc.o" =>
[ [
"crypto/aes/aes-586.s", "crypto/aes/aes_cbc.c",
], ],
"crypto/aes/aes_cfb.o" => "crypto/aes/aes_cfb.o" =>
[ [
"crypto/aes/aes_cfb.c", "crypto/aes/aes_cfb.c",
], ],
"crypto/aes/aes_core.o" =>
[
"crypto/aes/aes_core.c",
],
"crypto/aes/aes_ecb.o" => "crypto/aes/aes_ecb.o" =>
[ [
"crypto/aes/aes_ecb.c", "crypto/aes/aes_ecb.c",
@ -13338,8 +13350,9 @@ our %unified_info = (
], ],
"libcrypto" => "libcrypto" =>
[ [
"crypto/aes/aes-586.o", "crypto/aes/aes_cbc.o",
"crypto/aes/aes_cfb.o", "crypto/aes/aes_cfb.o",
"crypto/aes/aes_core.o",
"crypto/aes/aes_ecb.o", "crypto/aes/aes_ecb.o",
"crypto/aes/aes_ige.o", "crypto/aes/aes_ige.o",
"crypto/aes/aes_misc.o", "crypto/aes/aes_misc.o",
@ -15241,6 +15254,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15586,6 +15600,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: linux-elf" #define PLATFORM "platform: linux-elf"
#define DATE "built on: Wed Jun 12 20:54:39 2019 UTC" #define DATE "built on: Fri Sep 13 15:59:33 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * Generate compiler_flags as an array of individual characters. This is a
@ -39,11 +39,10 @@ static const char compiler_flags[] = {
'2','5','6','_','A','S','M',' ','-','D','S','H','A','5','1','2', '2','5','6','_','A','S','M',' ','-','D','S','H','A','5','1','2',
'_','A','S','M',' ','-','D','R','C','4','_','A','S','M',' ','-', '_','A','S','M',' ','-','D','R','C','4','_','A','S','M',' ','-',
'D','M','D','5','_','A','S','M',' ','-','D','R','M','D','1','6', 'D','M','D','5','_','A','S','M',' ','-','D','R','M','D','1','6',
'0','_','A','S','M',' ','-','D','A','E','S','_','A','S','M',' ', '0','_','A','S','M',' ','-','D','V','P','A','E','S','_','A','S',
'-','D','V','P','A','E','S','_','A','S','M',' ','-','D','W','H', 'M',' ','-','D','W','H','I','R','L','P','O','O','L','_','A','S',
'I','R','L','P','O','O','L','_','A','S','M',' ','-','D','G','H', 'M',' ','-','D','G','H','A','S','H','_','A','S','M',' ','-','D',
'A','S','H','_','A','S','M',' ','-','D','E','C','P','_','N','I', 'E','C','P','_','N','I','S','T','Z','2','5','6','_','A','S','M',
'S','T','Z','2','5','6','_','A','S','M',' ','-','D','P','O','L', ' ','-','D','P','O','L','Y','1','3','0','5','_','A','S','M',' ',
'Y','1','3','0','5','_','A','S','M',' ','-','D','N','D','E','B', '-','D','N','D','E','B','U','G','\0'
'U','G','\0'
}; };

View File

@ -16,7 +16,6 @@
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'RMD160_ASM', 'RMD160_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'WHIRLPOOL_ASM', 'WHIRLPOOL_ASM',
'GHASH_ASM', 'GHASH_ASM',

View File

@ -45,7 +45,9 @@
'openssl/ssl/t1_trce.c', 'openssl/ssl/t1_trce.c',
'openssl/ssl/tls13_enc.c', 'openssl/ssl/tls13_enc.c',
'openssl/ssl/tls_srp.c', 'openssl/ssl/tls_srp.c',
'openssl/crypto/aes/aes_cbc.c',
'openssl/crypto/aes/aes_cfb.c', 'openssl/crypto/aes/aes_cfb.c',
'openssl/crypto/aes/aes_core.c',
'openssl/crypto/aes/aes_ecb.c', 'openssl/crypto/aes/aes_ecb.c',
'openssl/crypto/aes/aes_ige.c', 'openssl/crypto/aes/aes_ige.c',
'openssl/crypto/aes/aes_misc.c', 'openssl/crypto/aes/aes_misc.c',
@ -671,7 +673,6 @@
'openssl/engines/e_padlock.c', 'openssl/engines/e_padlock.c',
], ],
'openssl_sources_linux-elf': [ 'openssl_sources_linux-elf': [
'./config/archs/linux-elf/asm_avx2/crypto/aes/aes-586.s',
'./config/archs/linux-elf/asm_avx2/crypto/aes/aesni-x86.s', './config/archs/linux-elf/asm_avx2/crypto/aes/aesni-x86.s',
'./config/archs/linux-elf/asm_avx2/crypto/aes/vpaes-x86.s', './config/archs/linux-elf/asm_avx2/crypto/aes/vpaes-x86.s',
'./config/archs/linux-elf/asm_avx2/crypto/bf/bf-586.s', './config/archs/linux-elf/asm_avx2/crypto/bf/bf-586.s',
@ -712,7 +713,6 @@
'RC4_ASM', 'RC4_ASM',
'MD5_ASM', 'MD5_ASM',
'RMD160_ASM', 'RMD160_ASM',
'AES_ASM',
'VPAES_ASM', 'VPAES_ASM',
'WHIRLPOOL_ASM', 'WHIRLPOOL_ASM',
'GHASH_ASM', 'GHASH_ASM',

View File

@ -111,8 +111,8 @@ our %config = (
sourcedir => ".", sourcedir => ".",
target => "linux-elf", target => "linux-elf",
tdirs => [ "ossl_shim" ], tdirs => [ "ossl_shim" ],
version => "1.1.1c", version => "1.1.1d",
version_num => "0x1010103fL", version_num => "0x1010104fL",
); );
our %target = ( our %target = (
@ -3224,6 +3224,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -7825,10 +7826,6 @@ our %unified_info = (
[ [
"crypto", "crypto",
], ],
"crypto/poly1305/poly1305-s390x.o" =>
[
"crypto",
],
"crypto/poly1305/poly1305-sparcv9.o" => "crypto/poly1305/poly1305-sparcv9.o" =>
[ [
"crypto", "crypto",
@ -9921,6 +9918,10 @@ our %unified_info = (
[ [
"include", "include",
], ],
"test/testutil/random.o" =>
[
"include",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"include", "include",
@ -15094,6 +15095,7 @@ our %unified_info = (
"test/testutil/init.o", "test/testutil/init.o",
"test/testutil/main.o", "test/testutil/main.o",
"test/testutil/output_helpers.o", "test/testutil/output_helpers.o",
"test/testutil/random.o",
"test/testutil/stanza.o", "test/testutil/stanza.o",
"test/testutil/tap_bio.o", "test/testutil/tap_bio.o",
"test/testutil/test_cleanup.o", "test/testutil/test_cleanup.o",
@ -15439,6 +15441,10 @@ our %unified_info = (
[ [
"test/testutil/output_helpers.c", "test/testutil/output_helpers.c",
], ],
"test/testutil/random.o" =>
[
"test/testutil/random.c",
],
"test/testutil/stanza.o" => "test/testutil/stanza.o" =>
[ [
"test/testutil/stanza.c", "test/testutil/stanza.c",

View File

@ -11,7 +11,7 @@
*/ */
#define PLATFORM "platform: linux-elf" #define PLATFORM "platform: linux-elf"
#define DATE "built on: Wed Jun 12 20:54:42 2019 UTC" #define DATE "built on: Fri Sep 13 15:59:39 2019 UTC"
/* /*
* Generate compiler_flags as an array of individual characters. This is a * 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