Skip to content

Commit a5c53e6

Browse files
authored
Expose PQ_DEFAULT in TlsCipherPreference enum (#865)
Add `TLS_CIPHER_PQ_DEFAULT` to `TlsCipherPreference` enum.
1 parent c0c2a85 commit a5c53e6

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

crt/s2n

Submodule s2n updated from 6cc9f53 to 806830d

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

+6-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,12 @@ public enum TlsCipherPreference {
5959
*
6060
* Both X25519MLKEM768 and P256MLKEM768 will be standardized by the IETF soon. Hybrid Groups that contain Kyber may be removed in the future.
6161
*/
62-
TLS_CIPHER_PREF_PQ_TLSv1_2_2023(7);
62+
TLS_CIPHER_PREF_PQ_TLSv1_2_2023(7),
63+
64+
/**
65+
* The latest recommended Post-quantum enabled TLS Policy. This policy may change over time.
66+
*/
67+
TLS_CIPHER_PQ_DEFAULT(8);
6368

6469
private int val;
6570

0 commit comments

Comments
 (0)