Index: net/socket/nss_ssl_util.cc |
diff --git a/net/socket/nss_ssl_util.cc b/net/socket/nss_ssl_util.cc |
index a238a25d2d4be95623fead070880556aa2c7aa64..627a03334ec73c4086a9c33885e14e24f6d03918 100644 |
--- a/net/socket/nss_ssl_util.cc |
+++ b/net/socket/nss_ssl_util.cc |
@@ -108,7 +108,7 @@ class NSSSSLInitSingleton { |
disableECDSA = true; |
#endif |
- // Explicitly enable exactly those ciphers with keys of at least 80 bits |
+ // Explicitly enable exactly those ciphers with keys of at least 80 bits. |
for (int i = 0; i < num_ciphers; i++) { |
SSLCipherSuiteInfo info; |
if (SSL_GetCipherSuiteInfo(ssl_ciphers[i], &info, |
@@ -130,10 +130,6 @@ class NSSSSLInitSingleton { |
enabled = false; |
} |
- if (ssl_ciphers[i] == TLS_DHE_DSS_WITH_AES_128_CBC_SHA) { |
- // Enabled to allow servers with only a DSA certificate to function. |
- enabled = true; |
- } |
SSL_CipherPrefSetDefault(ssl_ciphers[i], enabled); |
} |
} |