mirror of
https://github.com/jetty/jetty.project.git
synced 2025-03-03 20:39:18 +00:00
Accidentally committed
This commit is contained in:
parent
08ab80a3ad
commit
7646a24828
@ -30,8 +30,6 @@ public class HTTP2Cipher
|
|||||||
private static final Trie<Boolean> __blackProtocols = new ArrayTrie<>(6 * 5);
|
private static final Trie<Boolean> __blackProtocols = new ArrayTrie<>(6 * 5);
|
||||||
private static final Trie<Boolean> __blackCiphers = new ArrayTrie<>(275 * 40);
|
private static final Trie<Boolean> __blackCiphers = new ArrayTrie<>(275 * 40);
|
||||||
|
|
||||||
static String[] _xxx;
|
|
||||||
|
|
||||||
static
|
static
|
||||||
{
|
{
|
||||||
String[] protocols = {"TLSv1.2", "TLSv1.1", "TLSv1", "SSL", "SSLv2", "SSLv3"};
|
String[] protocols = {"TLSv1.2", "TLSv1.1", "TLSv1", "SSL", "SSLv2", "SSLv3"};
|
||||||
@ -43,9 +41,9 @@ public class HTTP2Cipher
|
|||||||
String[] ciphers =
|
String[] ciphers =
|
||||||
{
|
{
|
||||||
"TLS_NULL_WITH_NULL_NULL",
|
"TLS_NULL_WITH_NULL_NULL",
|
||||||
// "TLS_RSA_WITH_NULL_MD5",
|
"TLS_RSA_WITH_NULL_MD5",
|
||||||
"TLS_RSA_WITH_NULL_SHA",
|
"TLS_RSA_WITH_NULL_SHA",
|
||||||
"TLS_RSA_EXPORT_WITH_RC4_40_MD5"/*,
|
"TLS_RSA_EXPORT_WITH_RC4_40_MD5",
|
||||||
"TLS_RSA_WITH_RC4_128_MD5",
|
"TLS_RSA_WITH_RC4_128_MD5",
|
||||||
"TLS_RSA_WITH_RC4_128_SHA",
|
"TLS_RSA_WITH_RC4_128_SHA",
|
||||||
"TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5",
|
"TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5",
|
||||||
@ -318,9 +316,7 @@ public class HTTP2Cipher
|
|||||||
"TLS_PSK_WITH_AES_256_CCM",
|
"TLS_PSK_WITH_AES_256_CCM",
|
||||||
"TLS_PSK_WITH_AES_128_CCM_8",
|
"TLS_PSK_WITH_AES_128_CCM_8",
|
||||||
"TLS_PSK_WITH_AES_256_CCM_8"
|
"TLS_PSK_WITH_AES_256_CCM_8"
|
||||||
*/
|
|
||||||
};
|
};
|
||||||
_xxx = ciphers;
|
|
||||||
for (String c : ciphers)
|
for (String c : ciphers)
|
||||||
{
|
{
|
||||||
__blackCiphers.put(c, Boolean.TRUE);
|
__blackCiphers.put(c, Boolean.TRUE);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user