summaryrefslogtreecommitdiffstats
path: root/netwerk
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@gmail.com>2017-07-20 14:11:42 +0200
committerwolfbeast <mcwerewolf@gmail.com>2018-02-02 19:04:33 +0100
commit3b70762534d82b9dc0bc59934327e981f032e69f (patch)
treea0319c4fd7a54b74c74dab7cf257fdf18ee8f2ff /netwerk
parent8a1dc97a5aaf1f245b8bbf72de0e9458d15eeb81 (diff)
downloadUXP-3b70762534d82b9dc0bc59934327e981f032e69f.tar
UXP-3b70762534d82b9dc0bc59934327e981f032e69f.tar.gz
UXP-3b70762534d82b9dc0bc59934327e981f032e69f.tar.lz
UXP-3b70762534d82b9dc0bc59934327e981f032e69f.tar.xz
UXP-3b70762534d82b9dc0bc59934327e981f032e69f.zip
Add Camellia to the active cipher suites.
Issue #4 point 1. Camellia is a strong, modern, safe cipher with no known weaknesses or reduced strength attacks. The cipher has been approved for use by the ISO/IEC, the European Union's NESSIE project and the Japanese CRYPTREC project.
Diffstat (limited to 'netwerk')
-rw-r--r--netwerk/base/security-prefs.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/netwerk/base/security-prefs.js b/netwerk/base/security-prefs.js
index 9f42745f7..be3c6f33d 100644
--- a/netwerk/base/security-prefs.js
+++ b/netwerk/base/security-prefs.js
@@ -28,7 +28,11 @@ pref("security.ssl3.ecdhe_ecdsa_aes_128_sha", true);
pref("security.ssl3.ecdhe_rsa_aes_256_sha", true);
pref("security.ssl3.ecdhe_ecdsa_aes_256_sha", true);
pref("security.ssl3.dhe_rsa_aes_128_sha", true);
+pref("security.ssl3.dhe_rsa_camellia_256_sha", true);
pref("security.ssl3.dhe_rsa_aes_256_sha", true);
+pref("security.ssl3.dhe_rsa_camellia_128_sha", true);
+pref("security.ssl3.rsa_camellia_128_sha", true);
+pref("security.ssl3.rsa_camellia_256_sha", true);
pref("security.ssl3.rsa_aes_128_sha", true);
pref("security.ssl3.rsa_aes_256_sha", true);
pref("security.ssl3.rsa_des_ede3_sha", true);