Created
September 8, 2013 02:59
-
-
Save n8fr8/6481483 to your computer and use it in GitHub Desktop.
Trying to come up with the best set of TLS ciphers, in the right order.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public final static String[] SSL_IDEAL_CIPHER_SUITES = { | |
"TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA", | |
"TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA", | |
"TLS_ECDHE_ECDSA_WITH_RC4_128_SHA", | |
"TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA", | |
"TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA", | |
"TLS_ECDH_ECDSA_WITH_RC4_128_SHA", | |
"TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA", | |
"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA", | |
"TLS_ECDHE_RSA_WITH_RC4_128_SHA", | |
"TLS_ECDH_RSA_WITH_AES_256_CBC_SHA", | |
"TLS_ECDH_RSA_WITH_AES_128_CBC_SHA", | |
"TLS_ECDH_RSA_WITH_RC4_128_SHA", | |
"TLS_DHE_RSA_WITH_AES_256_CBC_SHA", | |
"TLS_DHE_RSA_WITH_AES_128_CBC_SHA", | |
"TLS_DHE_DSS_WITH_AES_128_CBC_SHA", | |
"TLS_DHE_DSS_WITH_AES_256_CBC_SHA", | |
"TLS_RSA_WITH_AES_256_CBC_SHA", | |
"TLS_RSA_WITH_AES_128_CBC_SHA" | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment