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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
41 changes: 35 additions & 6 deletions deps/openssl/config/archs/BSD-x86/asm/configdata.pm
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ our %config = (
],
"dynamic_engines" => "0",
"ex_libs" => [],
"full_version" => "3.5.6",
"full_version" => "3.5.7",
"includes" => [],
"lflags" => [],
"lib_defines" => [
Expand Down Expand Up @@ -233,7 +233,7 @@ our %config = (
"openssl_sys_defines" => [],
"openssldir" => "",
"options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-brotli no-brotli-dynamic no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-demos no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fips-jitter no-fuzz-afl no-fuzz-libfuzzer no-h3demo no-hqinterop no-jitter no-ktls no-loadereng no-md2 no-msan no-pie no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-sslkeylog no-tfo no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-winstore no-zlib no-zlib-dynamic no-zstd no-zstd-dynamic",
"patch" => "6",
"patch" => "7",
"perl_archname" => "x86_64-linux-gnu-thread-multi",
"perl_cmd" => "/usr/bin/perl",
"perl_version" => "5.34.0",
Expand Down Expand Up @@ -286,11 +286,11 @@ our %config = (
"prerelease" => "",
"processor" => "",
"rc4_int" => "unsigned int",
"release_date" => "7 Apr 2026",
"release_date" => "9 Jun 2026",
"shlib_version" => "3",
"sourcedir" => ".",
"target" => "BSD-x86",
"version" => "3.5.6"
"version" => "3.5.7"
);
our %target = (
"AR" => "ar",
Expand Down Expand Up @@ -1851,6 +1851,9 @@ our %unified_info = (
"test/tls13groupselection_test" => {
"noinst" => "1"
},
"test/tls13ticket_test" => {
"noinst" => "1"
},
"test/trace_api_test" => {
"noinst" => "1"
},
Expand Down Expand Up @@ -9510,6 +9513,11 @@ our %unified_info = (
"libssl",
"test/libtestutil.a"
],
"test/tls13ticket_test" => [
"libcrypto",
"libssl",
"test/libtestutil.a"
],
"test/trace_api_test" => [
"libcrypto.a",
"test/libtestutil.a"
Expand Down Expand Up @@ -12148,7 +12156,8 @@ our %unified_info = (
"test/helpers/sslbuffertest-bin-ssltestlib.o",
"test/helpers/sslcorrupttest-bin-ssltestlib.o",
"test/helpers/tls13ccstest-bin-ssltestlib.o",
"test/helpers/tls13groupselection_test-bin-ssltestlib.o"
"test/helpers/tls13groupselection_test-bin-ssltestlib.o",
"test/helpers/tls13ticket_test-bin-ssltestlib.o"
],
"products" => {
"bin" => [
Expand Down Expand Up @@ -12186,7 +12195,8 @@ our %unified_info = (
"test/sslbuffertest",
"test/sslcorrupttest",
"test/tls13ccstest",
"test/tls13groupselection_test"
"test/tls13groupselection_test",
"test/tls13ticket_test"
]
}
},
Expand Down Expand Up @@ -22067,6 +22077,10 @@ our %unified_info = (
".",
"include"
],
"test/helpers/tls13ticket_test-bin-ssltestlib.o" => [
".",
"include"
],
"test/hexstr_test" => [
".",
"include",
Expand Down Expand Up @@ -22581,6 +22595,10 @@ our %unified_info = (
"include",
"apps/include"
],
"test/tls13ticket_test" => [
"include",
"apps/include"
],
"test/trace_api_test" => [
".",
"include",
Expand Down Expand Up @@ -23909,6 +23927,7 @@ our %unified_info = (
"test/tls13ccstest",
"test/tls13encryptiontest",
"test/tls13groupselection_test",
"test/tls13ticket_test",
"test/trace_api_test",
"test/uitest",
"test/upcallstest",
Expand Down Expand Up @@ -31640,6 +31659,9 @@ our %unified_info = (
"test/helpers/tls13groupselection_test-bin-ssltestlib.o" => [
"test/helpers/ssltestlib.c"
],
"test/helpers/tls13ticket_test-bin-ssltestlib.o" => [
"test/helpers/ssltestlib.c"
],
"test/hexstr_test" => [
"test/hexstr_test-bin-hexstr_test.o"
],
Expand Down Expand Up @@ -32518,6 +32540,13 @@ our %unified_info = (
"test/tls13groupselection_test-bin-tls13groupselection_test.o" => [
"test/tls13groupselection_test.c"
],
"test/tls13ticket_test" => [
"test/helpers/tls13ticket_test-bin-ssltestlib.o",
"test/tls13ticket_test-bin-tls13tickettest.o"
],
"test/tls13ticket_test-bin-tls13tickettest.o" => [
"test/tls13tickettest.c"
],
"test/trace_api_test" => [
"test/trace_api_test-bin-trace_api_test.o"
],
Expand Down
2 changes: 1 addition & 1 deletion deps/openssl/config/archs/BSD-x86/asm/crypto/buildinf.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/

#define PLATFORM "platform: BSD-x86"
#define DATE "built on: Tue Apr 7 19:05:06 2026 UTC"
#define DATE "built on: Tue Jun 9 13:41:00 2026 UTC"

/*
* Generate compiler_flags as an array of individual characters. This is a
Expand Down
10 changes: 5 additions & 5 deletions deps/openssl/config/archs/BSD-x86/asm/include/openssl/opensslv.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ extern "C" {
# define OPENSSL_VERSION_MINOR 5
/* clang-format on */
/* clang-format off */
# define OPENSSL_VERSION_PATCH 6
# define OPENSSL_VERSION_PATCH 7
/* clang-format on */

/*
Expand Down Expand Up @@ -87,10 +87,10 @@ extern "C" {
* OPENSSL_VERSION_BUILD_METADATA_STR appended.
*/
/* clang-format off */
# define OPENSSL_VERSION_STR "3.5.6"
# define OPENSSL_VERSION_STR "3.5.7"
/* clang-format on */
/* clang-format off */
# define OPENSSL_FULL_VERSION_STR "3.5.6"
# define OPENSSL_FULL_VERSION_STR "3.5.7"
/* clang-format on */

/*
Expand All @@ -99,15 +99,15 @@ extern "C" {
* These strings are defined separately to allow them to be parsable.
*/
/* clang-format off */
# define OPENSSL_RELEASE_DATE "7 Apr 2026"
# define OPENSSL_RELEASE_DATE "9 Jun 2026"
/* clang-format on */

/*
* SECTION 4: BACKWARD COMPATIBILITY
*/

/* clang-format off */
# define OPENSSL_VERSION_TEXT "OpenSSL 3.5.6 7 Apr 2026"
# define OPENSSL_VERSION_TEXT "OpenSSL 3.5.7 9 Jun 2026"
/* clang-format on */

/* clang-format off */
Expand Down
4 changes: 2 additions & 2 deletions deps/openssl/config/archs/BSD-x86/asm/include/openssl/ssl.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* WARNING: do not edit!
* Generated by Makefile from include/openssl/ssl.h.in
*
* Copyright 1995-2025 The OpenSSL Project Authors. All Rights Reserved.
* Copyright 1995-2026 The OpenSSL Project Authors. All Rights Reserved.
* Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
* Copyright 2005 Nokia. All rights reserved.
*
Expand Down Expand Up @@ -2598,7 +2598,7 @@ SSL_as_poll_descriptor(SSL *s)
__owur int SSL_session_reused(const SSL *s);
__owur int SSL_is_server(const SSL *s);

__owur __owur SSL_CONF_CTX *SSL_CONF_CTX_new(void);
__owur SSL_CONF_CTX *SSL_CONF_CTX_new(void);
int SSL_CONF_CTX_finish(SSL_CONF_CTX *cctx);
void SSL_CONF_CTX_free(SSL_CONF_CTX *cctx);
unsigned int SSL_CONF_CTX_set_flags(SSL_CONF_CTX *cctx, unsigned int flags);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* WARNING: do not edit!
* Generated by Makefile from include/openssl/x509_acert.h.in
*
* Copyright 2022-2024 The OpenSSL Project Authors. All Rights Reserved.
* Copyright 2022-2026 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the Apache License 2.0 (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
Expand All @@ -22,6 +22,10 @@
#include <openssl/x509.h>
#include <openssl/pem.h>

#ifdef __cplusplus
extern "C" {
#endif

typedef struct X509_acert_st X509_ACERT;
typedef struct X509_acert_info_st X509_ACERT_INFO;
typedef struct ossl_object_digest_info_st OSSL_OBJECT_DIGEST_INFO;
Expand Down Expand Up @@ -301,4 +305,8 @@ SKM_DEFINE_STACK_OF_INTERNAL(OSSL_ISSUER_SERIAL, OSSL_ISSUER_SERIAL, OSSL_ISSUER

/* clang-format on */

#ifdef __cplusplus
}
#endif

#endif
41 changes: 35 additions & 6 deletions deps/openssl/config/archs/BSD-x86/asm_avx2/configdata.pm
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ our %config = (
],
"dynamic_engines" => "0",
"ex_libs" => [],
"full_version" => "3.5.6",
"full_version" => "3.5.7",
"includes" => [],
"lflags" => [],
"lib_defines" => [
Expand Down Expand Up @@ -233,7 +233,7 @@ our %config = (
"openssl_sys_defines" => [],
"openssldir" => "",
"options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-brotli no-brotli-dynamic no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-demos no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fips-jitter no-fuzz-afl no-fuzz-libfuzzer no-h3demo no-hqinterop no-jitter no-ktls no-loadereng no-md2 no-msan no-pie no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-sslkeylog no-tfo no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-winstore no-zlib no-zlib-dynamic no-zstd no-zstd-dynamic",
"patch" => "6",
"patch" => "7",
"perl_archname" => "x86_64-linux-gnu-thread-multi",
"perl_cmd" => "/usr/bin/perl",
"perl_version" => "5.34.0",
Expand Down Expand Up @@ -286,11 +286,11 @@ our %config = (
"prerelease" => "",
"processor" => "",
"rc4_int" => "unsigned int",
"release_date" => "7 Apr 2026",
"release_date" => "9 Jun 2026",
"shlib_version" => "3",
"sourcedir" => ".",
"target" => "BSD-x86",
"version" => "3.5.6"
"version" => "3.5.7"
);
our %target = (
"AR" => "ar",
Expand Down Expand Up @@ -1851,6 +1851,9 @@ our %unified_info = (
"test/tls13groupselection_test" => {
"noinst" => "1"
},
"test/tls13ticket_test" => {
"noinst" => "1"
},
"test/trace_api_test" => {
"noinst" => "1"
},
Expand Down Expand Up @@ -9510,6 +9513,11 @@ our %unified_info = (
"libssl",
"test/libtestutil.a"
],
"test/tls13ticket_test" => [
"libcrypto",
"libssl",
"test/libtestutil.a"
],
"test/trace_api_test" => [
"libcrypto.a",
"test/libtestutil.a"
Expand Down Expand Up @@ -12148,7 +12156,8 @@ our %unified_info = (
"test/helpers/sslbuffertest-bin-ssltestlib.o",
"test/helpers/sslcorrupttest-bin-ssltestlib.o",
"test/helpers/tls13ccstest-bin-ssltestlib.o",
"test/helpers/tls13groupselection_test-bin-ssltestlib.o"
"test/helpers/tls13groupselection_test-bin-ssltestlib.o",
"test/helpers/tls13ticket_test-bin-ssltestlib.o"
],
"products" => {
"bin" => [
Expand Down Expand Up @@ -12186,7 +12195,8 @@ our %unified_info = (
"test/sslbuffertest",
"test/sslcorrupttest",
"test/tls13ccstest",
"test/tls13groupselection_test"
"test/tls13groupselection_test",
"test/tls13ticket_test"
]
}
},
Expand Down Expand Up @@ -22067,6 +22077,10 @@ our %unified_info = (
".",
"include"
],
"test/helpers/tls13ticket_test-bin-ssltestlib.o" => [
".",
"include"
],
"test/hexstr_test" => [
".",
"include",
Expand Down Expand Up @@ -22581,6 +22595,10 @@ our %unified_info = (
"include",
"apps/include"
],
"test/tls13ticket_test" => [
"include",
"apps/include"
],
"test/trace_api_test" => [
".",
"include",
Expand Down Expand Up @@ -23909,6 +23927,7 @@ our %unified_info = (
"test/tls13ccstest",
"test/tls13encryptiontest",
"test/tls13groupselection_test",
"test/tls13ticket_test",
"test/trace_api_test",
"test/uitest",
"test/upcallstest",
Expand Down Expand Up @@ -31640,6 +31659,9 @@ our %unified_info = (
"test/helpers/tls13groupselection_test-bin-ssltestlib.o" => [
"test/helpers/ssltestlib.c"
],
"test/helpers/tls13ticket_test-bin-ssltestlib.o" => [
"test/helpers/ssltestlib.c"
],
"test/hexstr_test" => [
"test/hexstr_test-bin-hexstr_test.o"
],
Expand Down Expand Up @@ -32518,6 +32540,13 @@ our %unified_info = (
"test/tls13groupselection_test-bin-tls13groupselection_test.o" => [
"test/tls13groupselection_test.c"
],
"test/tls13ticket_test" => [
"test/helpers/tls13ticket_test-bin-ssltestlib.o",
"test/tls13ticket_test-bin-tls13tickettest.o"
],
"test/tls13ticket_test-bin-tls13tickettest.o" => [
"test/tls13tickettest.c"
],
"test/trace_api_test" => [
"test/trace_api_test-bin-trace_api_test.o"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/

#define PLATFORM "platform: BSD-x86"
#define DATE "built on: Tue Apr 7 19:05:23 2026 UTC"
#define DATE "built on: Tue Jun 9 13:41:17 2026 UTC"

/*
* Generate compiler_flags as an array of individual characters. This is a
Expand Down
Loading
Loading