Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use latest PQ TLS Cipher Preference in Tests #717

Merged
merged 2 commits into from
Mar 18, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/HttpClientConnectionManagerTest.cpp
Original file line number Diff line number Diff line change
@@ -36,7 +36,7 @@ static int s_TestHttpClientConnectionManagerResourceSafety(struct aws_allocator
// Ensure that if PQ TLS ciphers are supported on the current platform, that setting them works when connecting
// to S3. This TlsCipherPreference has post quantum ciphers at the top of it's preference list (that will be
// ignored if S3 doesn't support them) followed by regular TLS ciphers that can be chosen and negotiated by S3.
aws_tls_cipher_pref tls_cipher_pref = AWS_IO_TLS_CIPHER_PREF_PQ_TLSv1_0_2021_05;
aws_tls_cipher_pref tls_cipher_pref = AWS_IO_TLS_CIPHER_PREF_PQ_DEFAULT;

if (aws_tls_is_cipher_pref_supported(tls_cipher_pref))
{