crypto: use X509V3_EXT_d2i
There is no need to reach into quite so many internals to decode an extension. PR-URL: https://github.com/nodejs/node/pull/15348 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
This commit is contained in:
parent
c51e0e97cc
commit
9af9bcbaf5
@ -1477,12 +1477,7 @@ static bool SafeX509ExtPrint(BIO* out, X509_EXTENSION* ext) {
|
||||
if (method != X509V3_EXT_get_nid(NID_subject_alt_name))
|
||||
return false;
|
||||
|
||||
const unsigned char* p = ext->value->data;
|
||||
GENERAL_NAMES* names = reinterpret_cast<GENERAL_NAMES*>(ASN1_item_d2i(
|
||||
NULL,
|
||||
&p,
|
||||
ext->value->length,
|
||||
ASN1_ITEM_ptr(method->it)));
|
||||
GENERAL_NAMES* names = static_cast<GENERAL_NAMES*>(X509V3_EXT_d2i(ext));
|
||||
if (names == NULL)
|
||||
return false;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user