File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
common/src/aws/sdk/kotlin/crt/io
jvm/src/aws/sdk/kotlin/crt/io Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -31,9 +31,10 @@ public enum class TlsCipherPreference(public val value: Int) {
3131 PQ_DEFAULT (8 ),
3232
3333 /* *
34- * This security policy was the system default before PQ was enabled by default.
34+ * This security policy was the system default before PQ was enabled by default, specifically
35+ * aws-c-io's AWS_IO_TLS_CIPHER_PREF_TLSV1_0_2023_06.
3536 */
36- AWS_IO_TLS_CIPHER_PREF_TLSV1_0_2023_06 (10 ),
37+ TLS_CIPHER_PREF_TLSV1_0_2023 (10 ),
3738
3839 ;
3940
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ private fun TlsCipherPreference.into(): TlsCipherPreferenceJni = when (this) {
3131 TlsCipherPreference .SYSTEM_DEFAULT -> TlsCipherPreferenceJni .TLS_CIPHER_SYSTEM_DEFAULT
3232 TlsCipherPreference .PQ_TLSV1_2_2024_10 -> TlsCipherPreferenceJni .TLS_CIPHER_PREF_PQ_TLSv1_2_2023
3333 TlsCipherPreference .PQ_DEFAULT -> TlsCipherPreferenceJni .TLS_CIPHER_PQ_DEFAULT
34+ TlsCipherPreference .TLS_CIPHER_PREF_TLSV1_0_2023 -> TlsCipherPreferenceJni .TLS_CIPHER_PREF_TLSV1_0_2023
3435}
3536
3637private fun TlsVersion.into (): TlsVersionJni = when (this ) {
You can’t perform that action at this time.
0 commit comments