mirror of
https://github.com/moparisthebest/k-9
synced 2024-12-24 08:38:51 -05:00
Support GCM cipher suites.
This commit is contained in:
parent
b660d45b6c
commit
a63a91fa54
@ -32,6 +32,12 @@ public class DefaultTrustedSocketFactory implements TrustedSocketFactory {
|
||||
|
||||
// Order taken from OpenSSL 1.0.1c
|
||||
protected static final String ORDERED_KNOWN_CIPHERS[] = {
|
||||
"TLS_ECDHE_RSA_AES_256_GCM_SHA384",
|
||||
"TLS_ECDHE_ECDSA_AES_256_GCM_SHA384",
|
||||
"TLS_ECDHE_RSA_AES_128_GCM_SHA256",
|
||||
"TLS_ECDHE_ECDSA_AES_128_GCM_SHA256",
|
||||
"TLS_DHE_RSA_AES_256_GCM_SHA384",
|
||||
"TLS_DHE_RSA_AES_128_GCM_SHA256",
|
||||
"TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA",
|
||||
"TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA",
|
||||
"TLS_DHE_RSA_WITH_AES_256_CBC_SHA",
|
||||
|
Loading…
Reference in New Issue
Block a user