Skip to content

Commit

Permalink
Accidentally committed
Browse files Browse the repository at this point in the history
  • Loading branch information
gregw committed Nov 25, 2020
1 parent 08ab80a commit 7646a24
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ public class HTTP2Cipher
private static final Trie<Boolean> __blackProtocols = new ArrayTrie<>(6 * 5);
private static final Trie<Boolean> __blackCiphers = new ArrayTrie<>(275 * 40);

static String[] _xxx;

static
{
String[] protocols = {"TLSv1.2", "TLSv1.1", "TLSv1", "SSL", "SSLv2", "SSLv3"};
Expand All @@ -43,9 +41,9 @@ public class HTTP2Cipher
String[] ciphers =
{
"TLS_NULL_WITH_NULL_NULL",
// "TLS_RSA_WITH_NULL_MD5",
"TLS_RSA_WITH_NULL_MD5",
"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_SHA",
"TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5",
Expand Down Expand Up @@ -318,9 +316,7 @@ public class HTTP2Cipher
"TLS_PSK_WITH_AES_256_CCM",
"TLS_PSK_WITH_AES_128_CCM_8",
"TLS_PSK_WITH_AES_256_CCM_8"
*/
};
_xxx = ciphers;
for (String c : ciphers)
{
__blackCiphers.put(c, Boolean.TRUE);
Expand Down

0 comments on commit 7646a24

Please sign in to comment.