summaryrefslogtreecommitdiff
path: root/security/nss/lib/ssl/sslenum.c
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2020-02-24 22:20:40 +0100
committerwolfbeast <mcwerewolf@wolfbeast.com>2020-02-24 22:20:40 +0100
commit099a1ea88c25d8eea33f0629de66040bc62d5a97 (patch)
tree0a1b368e50a68ad5689d800d99f964c2b6886514 /security/nss/lib/ssl/sslenum.c
parent81089ff09437ca99eba3dacf901fdef0de533024 (diff)
downloaduxp-099a1ea88c25d8eea33f0629de66040bc62d5a97.tar.gz
Issue #1462 - Part 1: Implement HMAC-based Camellia suites in NSS.
This implements the ephemeral suites from RFC 6367 section 2.1 in NSS, providing the back-end support for these suites.
Diffstat (limited to 'security/nss/lib/ssl/sslenum.c')
-rw-r--r--security/nss/lib/ssl/sslenum.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/security/nss/lib/ssl/sslenum.c b/security/nss/lib/ssl/sslenum.c
index b5272d4a85..56df461a71 100644
--- a/security/nss/lib/ssl/sslenum.c
+++ b/security/nss/lib/ssl/sslenum.c
@@ -76,6 +76,10 @@ const PRUint16 SSL_ImplementedCiphers[] = {
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,
TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384,
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384,
+ TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256,
+ TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256,
+ TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384,
+ TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384,
TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA,
TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA,
TLS_ECDHE_ECDSA_WITH_RC4_128_SHA,