From 1b485802d7e9211074756a8d25c9b0758daf9a87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Sat, 6 May 2023 01:27:31 +0000 Subject: [PATCH] src: register ext reference for Fingerprint512 Refs: https://github.com/nodejs/node/pull/39809 Refs: https://github.com/nodejs/node/pull/40239 --- src/crypto/crypto_x509.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/crypto/crypto_x509.cc b/src/crypto/crypto_x509.cc index 6897be680f62dc..48ec4b2587342d 100644 --- a/src/crypto/crypto_x509.cc +++ b/src/crypto/crypto_x509.cc @@ -572,6 +572,7 @@ void X509Certificate::RegisterExternalReferences( registry->Register(ValidFrom); registry->Register(Fingerprint); registry->Register(Fingerprint256); + registry->Register(Fingerprint512); registry->Register(KeyUsage); registry->Register(SerialNumber); registry->Register(Pem);