artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
78e8dcf
)
Use X509_get_signature_nid() instead of inlining it
author
tb
<tb@openbsd.org>
Mon, 13 Nov 2023 15:38:09 +0000
(15:38 +0000)
committer
tb
<tb@openbsd.org>
Mon, 13 Nov 2023 15:38:09 +0000
(15:38 +0000)
ok beck jsing
lib/libcrypto/x509/x509type.c
patch
|
blob
|
history
diff --git
a/lib/libcrypto/x509/x509type.c
b/lib/libcrypto/x509/x509type.c
index
91e1fe8
..
f713abd
100644
(file)
--- a/
lib/libcrypto/x509/x509type.c
+++ b/
lib/libcrypto/x509/x509type.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: x509type.c,v 1.2
0 2023/11/13 15:36:55
tb Exp $ */
+/* $OpenBSD: x509type.c,v 1.2
1 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: