# HG changeset patch # User Martin Thomson <martin.thomson@gmail.com> # Date 1450292205 -3600 # Node ID 891676aa0d85a04ea3ecee4719c44c54107f05bf # Parent edbbb61c6bbe24def154aade7dde6e90cddebe87 Bug 1158489, Remove obsolete entry, r=wtc diff --git a/lib/ssl/ssl3con.c b/lib/ssl/ssl3con.c --- a/lib/ssl/ssl3con.c +++ b/lib/ssl/ssl3con.c @@ -4369,17 +4369,16 @@ ssl3_ConsumeHandshakeVariable(sslSocket } /* tlsHashOIDMap contains the mapping between TLS hash identifiers and the * SECOidTag used internally by NSS. */ static const struct { int tlsHash; SECOidTag oid; } tlsHashOIDMap[] = { - { tls_hash_md5, SEC_OID_MD5 }, { tls_hash_sha1, SEC_OID_SHA1 }, { tls_hash_sha224, SEC_OID_SHA224 }, { tls_hash_sha256, SEC_OID_SHA256 }, { tls_hash_sha384, SEC_OID_SHA384 }, { tls_hash_sha512, SEC_OID_SHA512 } }; /* ssl3_TLSHashAlgorithmToOID converts a TLS hash identifier into an OID value.