-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OSM-5001 Removed the use of equal preference groups in default cipher…
… suite spec Signed-off-by: Ted Poole <tpoole@redhat.com>
- Loading branch information
Showing
9 changed files
with
1,029 additions
and
313 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
import %workspace%/vendor/envoy/.bazelrc | ||
import %workspace%/vendor.bazelrc | ||
|
||
test --test_env=ENVOY_IP_TEST_VERSIONS=v4only | ||
|
||
# As of today we do not support QUIC/HTTP3 -- hence we exclude it from the build, always. | ||
build --@envoy//bazel:http3=false | ||
build --deleted_packages=@envoy//test/common/quic | ||
build --deleted_packages=@envoy//test/common/quic/platform | ||
|
||
# build --@envoy//bazel:http3=False | ||
# test --@envoy//bazel:http3=False | ||
build --deleted_packages=@envoy//test/common/quic/platform |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
patch/envoy/source/extensions/transport_sockets/tls/context_config_impl.cc.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- a/source/extensions/transport_sockets/tls/context_config_impl.cc | ||
+++ b/source/extensions/transport_sockets/tls/context_config_impl.cc | ||
@@ -328,8 +328,8 @@ const unsigned ClientContextConfigImpl::DEFAULT_MAX_VERSION = TLS1_2_VERSION; | ||
|
||
const std::string ClientContextConfigImpl::DEFAULT_CIPHER_SUITES = | ||
#ifndef BORINGSSL_FIPS | ||
- "[ECDHE-ECDSA-AES128-GCM-SHA256|ECDHE-ECDSA-CHACHA20-POLY1305]:" | ||
- "[ECDHE-RSA-AES128-GCM-SHA256|ECDHE-RSA-CHACHA20-POLY1305]:" | ||
+ "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-CHACHA20-POLY1305:" | ||
+ "ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-CHACHA20-POLY1305:" | ||
#else // BoringSSL FIPS | ||
"ECDHE-ECDSA-AES128-GCM-SHA256:" | ||
"ECDHE-RSA-AES128-GCM-SHA256:" | ||
@@ -367,8 +367,8 @@ const unsigned ServerContextConfigImpl::DEFAULT_MAX_VERSION = TLS1_3_VERSION; | ||
|
||
const std::string ServerContextConfigImpl::DEFAULT_CIPHER_SUITES = | ||
#ifndef BORINGSSL_FIPS | ||
- "[ECDHE-ECDSA-AES128-GCM-SHA256|ECDHE-ECDSA-CHACHA20-POLY1305]:" | ||
- "[ECDHE-RSA-AES128-GCM-SHA256|ECDHE-RSA-CHACHA20-POLY1305]:" | ||
+ "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-CHACHA20-POLY1305:" | ||
+ "ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-CHACHA20-POLY1305:" | ||
#else // BoringSSL FIPS | ||
"ECDHE-ECDSA-AES128-GCM-SHA256:" | ||
"ECDHE-RSA-AES128-GCM-SHA256:" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.