Skip to content

Commit 5c71165

Browse files
Add default non-pq policy, bump aws-c-io to 0.26.3 (#975)
1 parent a301c3d commit 5c71165

3 files changed

Lines changed: 10 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ jobs:
202202
python builder.pyz build -p ${{ env.PACKAGE_NAME }} downstream
203203
204204
macos:
205-
runs-on: macos-14 #latest
205+
runs-on: macos-15 #latest
206206
steps:
207207
- uses: aws-actions/configure-aws-credentials@v4
208208
with:
@@ -220,7 +220,7 @@ jobs:
220220
python3 codebuild/macos_compatibility_check.py
221221
222222
macos-x64:
223-
runs-on: macos-14-large #latest
223+
runs-on: macos-15-large #latest
224224
steps:
225225
- uses: aws-actions/configure-aws-credentials@v4
226226
with:
@@ -287,7 +287,7 @@ jobs:
287287
288288
289289
localhost-test-macos:
290-
runs-on: macos-14 # latest
290+
runs-on: macos-15 # latest
291291
steps:
292292
- uses: aws-actions/configure-aws-credentials@v4
293293
with:

src/main/java/software/amazon/awssdk/crt/io/TlsCipherPreference.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,12 @@ public enum TlsCipherPreference {
7676
* This security policy was the system default before PQ was enabled by default, specifically
7777
* aws-c-io's AWS_IO_TLS_CIPHER_PREF_TLSV1_0_2023_06.
7878
*/
79-
TLS_CIPHER_PREF_TLSv1_0_2023(10);
79+
TLS_CIPHER_PREF_TLSv1_0_2023(10),
80+
81+
/**
82+
* The latest recommended non-Post-quantum enabled TLS Policy. This policy may change over time.
83+
*/
84+
TLS_CIPHER_NON_PQ_DEFAULT(11);
8085

8186
private int val;
8287

0 commit comments

Comments
 (0)