From 3a71a35ad9dad0e5d2cad8efecc8ba9d57c42d43 Mon Sep 17 00:00:00 2001 From: Enji Cooper Date: Tue, 9 Jun 2026 12:21:35 -0700 Subject: openssl: import 3.5.7 This change adds OpenSSL 3.5.7 from upstream [1]. The 3.5.7 artifact was been verified via PGP key [2] and by SHA256 checksum [3]. This change is a security release which resolves several issues with OpenSSL 3.5, the highest severity issue being ranked "High". Users are strongly encouraged to update to this release. More information about the release (from a high level) can be found in the release notes [4]. Updated via [5] with `update_openssl.sh 3.5.7`. Approved by: so (gordon; implicit) 1. https://github.com/openssl/openssl/releases/download/openssl-3.5.7/openssl-3.5.7.tar.gz 2. https://github.com/openssl/openssl/releases/download/openssl-3.5.7/openssl-3.5.7.tar.gz.asc 3. https://github.com/openssl/openssl/releases/download/openssl-3.5.7/openssl-3.5.7.tar.gz.sha256 4. https://github.com/openssl/openssl/blob/openssl-3.5.7/NEWS.md 5. https://codeberg.org/ngie/freebsd-powertools/src/branch/main/shell/update_openssl.sh (facdfe954) --- test/asn1_decode_test.c | 32 ++++---------------------------- 1 file changed, 4 insertions(+), 28 deletions(-) (limited to 'test/asn1_decode_test.c') diff --git a/test/asn1_decode_test.c b/test/asn1_decode_test.c index 49af48c1605e..6e00d4089692 100644 --- a/test/asn1_decode_test.c +++ b/test/asn1_decode_test.c @@ -163,21 +163,8 @@ static int test_gentime(void) { /* Underflowing GeneralizedTime 161208193400Z (YYMMDDHHMMSSZ) */ const unsigned char der[] = { - 0x18, - 0x0d, - 0x31, - 0x36, - 0x31, - 0x32, - 0x30, - 0x38, - 0x31, - 0x39, - 0x33, - 0x34, - 0x30, - 0x30, - 0x5a, + 0x18, 0x0d, 0x31, 0x36, 0x31, 0x32, 0x30, 0x38, 0x31, 0x39, + 0x33, 0x34, 0x30, 0x30, 0x5a }; const unsigned char *p; int der_len, rc = 1; @@ -200,19 +187,8 @@ static int test_utctime(void) { /* Underflowing UTCTime 0205104700Z (MMDDHHMMSSZ) */ const unsigned char der[] = { - 0x17, - 0x0b, - 0x30, - 0x32, - 0x30, - 0x35, - 0x31, - 0x30, - 0x34, - 0x37, - 0x30, - 0x30, - 0x5a, + 0x17, 0x0b, 0x30, 0x32, 0x30, 0x35, 0x31, 0x30, 0x34, 0x37, + 0x30, 0x30, 0x5a }; const unsigned char *p; int der_len, rc = 1; -- cgit v1.3