Skip to content

Commit 1e7565c

Browse files
authored
Prepare for v1.49.0 (#2297)
## What's Changed * Revert "Allow constructed strings in BER parsing (#2015)" by @samuel40791765 in #2278 * Add the rehash utility to the openssl CLI tool by @smittals2 in #2258 * Documentation on service indicator by @justsmth in #2281 * Update patches in Ruby CI by @samuel40791765 in #2233 * Reject DSA trailing garbage in EVP layer, add test cases by @skmcgrail in #2289 * Add support for verifying PKCS7 signed attributes by @samuel40791765 in #2264 * Add support for more SSL BIO functions by @samuel40791765 in #2273 * Wire-up rust-openssl into GitHub CI (for the time being) by @skmcgrail in #2291 * Adding detection of out-of-bound pre-bound memory read to AES-XTS tests. by @nebeid in #2286 * AES: Add function pointer trampoline to avoid delocator issue by @hanno-becker in #2294 * Bump mysql CI to 9.2.0 by @samuel40791765 in #2161 * Cherrypick hardening DSA param checks from BoringSSL by @smittals2 in #2293 By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and the ISC license.
1 parent 0c97337 commit 1e7565c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

crypto/fipsmodule/service_indicator/service_indicator_test.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5296,7 +5296,7 @@ TEST(ServiceIndicatorTest, ED25519SigGenVerify) {
52965296
// Since this is running in FIPS mode it should end in FIPS
52975297
// Update this when the AWS-LC version number is modified
52985298
TEST(ServiceIndicatorTest, AWSLCVersionString) {
5299-
ASSERT_STREQ(awslc_version_string(), "AWS-LC FIPS 1.48.5");
5299+
ASSERT_STREQ(awslc_version_string(), "AWS-LC FIPS 1.49.0");
53005300
}
53015301

53025302
#else
@@ -5339,6 +5339,6 @@ TEST(ServiceIndicatorTest, BasicTest) {
53395339
// Since this is not running in FIPS mode it shouldn't end in FIPS
53405340
// Update this when the AWS-LC version number is modified
53415341
TEST(ServiceIndicatorTest, AWSLCVersionString) {
5342-
ASSERT_STREQ(awslc_version_string(), "AWS-LC 1.48.5");
5342+
ASSERT_STREQ(awslc_version_string(), "AWS-LC 1.49.0");
53435343
}
53445344
#endif // AWSLC_FIPS

include/openssl/base.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ extern "C" {
122122
// ServiceIndicatorTest.AWSLCVersionString
123123
// Note: there are two versions of this test. Only one test is compiled
124124
// depending on FIPS mode.
125-
#define AWSLC_VERSION_NUMBER_STRING "1.48.5"
125+
#define AWSLC_VERSION_NUMBER_STRING "1.49.0"
126126

127127
#if defined(BORINGSSL_SHARED_LIBRARY)
128128

0 commit comments

Comments
 (0)