77be88
From a1968db524e087a36a19a351b89bf6f1633819aa Mon Sep 17 00:00:00 2001
77be88
From: minfrin <minfrin@users.noreply.github.com>
77be88
Date: Tue, 5 Jan 2021 23:17:14 +0000
77be88
Subject: [PATCH] Add support for digests detected from ECC certificates
77be88
77be88
Previously, the digest could be detected on RSA certificates only. This
77be88
patch adds detection for ECC certificates.
77be88
77be88
[ bvanassche: changed _htmap2 into a two-dimensional array and renamed _htmap2
77be88
  back to _htmap ]
77be88
---
77be88
 snmplib/snmp_openssl.c | 60 +++++++++++++++++++++++++++++++++++-------
77be88
 1 file changed, 50 insertions(+), 10 deletions(-)
77be88
77be88
diff --git a/snmplib/snmp_openssl.c b/snmplib/snmp_openssl.c
77be88
index c092a007af..432cb5c27c 100644
77be88
--- a/snmplib/snmp_openssl.c
77be88
+++ b/snmplib/snmp_openssl.c
77be88
@@ -521,18 +521,54 @@ netsnmp_openssl_cert_dump_extensions(X509 *ocert)
77be88
     }
77be88
 }
77be88
 
77be88
-static int _htmap[NS_HASH_MAX + 1] = {
77be88
-    0, NID_md5WithRSAEncryption, NID_sha1WithRSAEncryption,
77be88
-    NID_sha224WithRSAEncryption, NID_sha256WithRSAEncryption,
77be88
-    NID_sha384WithRSAEncryption, NID_sha512WithRSAEncryption };
77be88
+static const struct {
77be88
+    uint16_t nid;
77be88
+    uint16_t ht;
77be88
+} _htmap[] = {
77be88
+    { 0, NS_HASH_NONE },
77be88
+#ifdef NID_md5WithRSAEncryption
77be88
+    { NID_md5WithRSAEncryption, NS_HASH_MD5 },
77be88
+#endif
77be88
+#ifdef NID_sha1WithRSAEncryption
77be88
+    { NID_sha1WithRSAEncryption, NS_HASH_SHA1 },
77be88
+#endif
77be88
+#ifdef NID_ecdsa_with_SHA1
77be88
+    { NID_ecdsa_with_SHA1, NS_HASH_SHA1 },
77be88
+#endif
77be88
+#ifdef NID_sha224WithRSAEncryption
77be88
+    { NID_sha224WithRSAEncryption, NS_HASH_SHA224 },
77be88
+#endif
77be88
+#ifdef NID_ecdsa_with_SHA224
77be88
+    { NID_ecdsa_with_SHA224, NS_HASH_SHA224 },
77be88
+#endif
77be88
+#ifdef NID_sha256WithRSAEncryption
77be88
+    { NID_sha256WithRSAEncryption, NS_HASH_SHA256 },
77be88
+#endif
77be88
+#ifdef NID_ecdsa_with_SHA256
77be88
+    { NID_ecdsa_with_SHA256, NS_HASH_SHA256 },
77be88
+#endif
77be88
+#ifdef NID_sha384WithRSAEncryption
77be88
+    { NID_sha384WithRSAEncryption, NS_HASH_SHA384 },
77be88
+#endif
77be88
+#ifdef NID_ecdsa_with_SHA384
77be88
+    { NID_ecdsa_with_SHA384, NS_HASH_SHA384 },
77be88
+#endif
77be88
+#ifdef NID_sha512WithRSAEncryption
77be88
+    { NID_sha512WithRSAEncryption, NS_HASH_SHA512 },
77be88
+#endif
77be88
+#ifdef NID_ecdsa_with_SHA512
77be88
+    { NID_ecdsa_with_SHA512, NS_HASH_SHA512 },
77be88
+#endif
77be88
+};
77be88
 
77be88
 int
77be88
 _nid2ht(int nid)
77be88
 {
77be88
     int i;
77be88
-    for (i=1; i<= NS_HASH_MAX; ++i) {
77be88
-        if (nid == _htmap[i])
77be88
-            return i;
77be88
+
77be88
+    for (i = 0; i < sizeof(_htmap) / sizeof(_htmap[0]); i++) {
77be88
+        if (_htmap[i].nid == nid)
77be88
+            return _htmap[i].ht;
77be88
     }
77be88
     return 0;
77be88
 }
77be88
@@ -541,9 +577,13 @@ _nid2ht(int nid)
77be88
 int
77be88
 _ht2nid(int ht)
77be88
 {
77be88
-    if ((ht < 0) || (ht > NS_HASH_MAX))
77be88
-        return 0;
77be88
-    return _htmap[ht];
77be88
+    int i;
77be88
+
77be88
+    for (i = 0; i < sizeof(_htmap) / sizeof(_htmap[0]); i++) {
77be88
+        if (_htmap[i].ht == ht)
77be88
+            return _htmap[i].nid;
77be88
+    }
77be88
+    return 0;
77be88
 }
77be88
 #endif /* NETSNMP_FEATURE_REMOVE_OPENSSL_HT2NID */
77be88
 
77be88