diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-02 16:36:34 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-02 16:36:34 +0200 |
commit | d3594baa4bf79106994bfe92e45761c11196b36a (patch) | |
tree | 7256fba00a0d68a9b62579502551678bc76fde70 | |
parent | 33888870388db60b1042abc089eca9a569903011 (diff) | |
download | uxp-d3594baa4bf79106994bfe92e45761c11196b36a.tar.gz |
Issue #1462 - Part 6: Don't mess with OIDs, that's a different spec.
-rw-r--r-- | security/nss/lib/ssl/sslspec.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/security/nss/lib/ssl/sslspec.c b/security/nss/lib/ssl/sslspec.c index c79f889865..def3c67505 100644 --- a/security/nss/lib/ssl/sslspec.c +++ b/security/nss/lib/ssl/sslspec.c @@ -56,10 +56,6 @@ static const ssl3BulkCipherDef ssl_bulk_cipher_defs[] = { SEC_OID_AES_256_GCM, "AES-256-GCM", MR_128}, {cipher_chacha20, ssl_calg_chacha20, 32,32, type_aead, 12, 0,16, 0, SEC_OID_CHACHA20_POLY1305, "ChaCha20-Poly1305", MR_MAX}, - {cipher_camellia_128_gcm, ssl_calg_camellia_gcm, 16,16, type_aead, 4, 0,16, 8, - SEC_OID_CAMELLIA_128_GCM, "Camellia-128-GCM", MR_128}, - {cipher_camellia_256_gcm, ssl_calg_camellia_gcm, 32,32, type_aead, 4, 0,16, 8, - SEC_OID_CAMELLIA_256_GCM, "Camellia-256-GCM", MR_128}, {cipher_missing, ssl_calg_null, 0, 0, type_stream, 0, 0, 0, 0, SEC_OID_UNKNOWN, "missing", 0U}, }; |