You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of right now the QuicSslContextBuilder creates a QuicheQuicSslContext object where the cipherSuites are set by default.
public List<String> cipherSuites() {
return Arrays.asList("TLS_AES_128_GCM_SHA256", "TLS_AES_256_GCM_SHA384");
}
Would it be possible to add more suites like, TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 or TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 and specify the order of preference?
Or completely customise the cipher suites to enable, in the order of preference, like in the SslContextBuilder class?
The text was updated successfully, but these errors were encountered:
As of right now the QuicSslContextBuilder creates a QuicheQuicSslContext object where the cipherSuites are set by default.
Would it be possible to add more suites like, TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 or TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 and specify the order of preference?
Or completely customise the cipher suites to enable, in the order of preference, like in the SslContextBuilder class?
The text was updated successfully, but these errors were encountered: