Commit 5644e08d authored by davidben's avatar davidben Committed by Commit bot

Disable DSS ciphers in the NSS port.

This makes the remaining NSS ports match the BoringSSL ports.

BUG=469387

Review URL: https://codereview.chromium.org/1020073005

Cr-Commit-Position: refs/heads/master@{#322062}
parent e0bb6e53
......@@ -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);
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment