From: tb Date: Mon, 13 Nov 2023 15:38:09 +0000 (+0000) Subject: Use X509_get_signature_nid() instead of inlining it X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=a5672356c9fcd0a37faacc2f95d59d7540929ee1;p=openbsd Use X509_get_signature_nid() instead of inlining it ok beck jsing --- diff --git a/lib/libcrypto/x509/x509type.c b/lib/libcrypto/x509/x509type.c index 91e1fe8f32c..f713abde8f1 100644 --- a/lib/libcrypto/x509/x509type.c +++ b/lib/libcrypto/x509/x509type.c @@ -1,4 +1,4 @@ -/* $OpenBSD: x509type.c,v 1.20 2023/11/13 15:36:55 tb Exp $ */ +/* $OpenBSD: x509type.c,v 1.21 2023/11/13 15:38:09 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -106,7 +106,7 @@ X509_certificate_type(const X509 *x, const EVP_PKEY *pkey) break; } - i = OBJ_obj2nid(x->sig_alg->algorithm); + i = X509_get_signature_nid(x); if (i && OBJ_find_sigid_algs(i, NULL, &i)) { switch (i) { case NID_rsaEncryption: