summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authortb <>2024-01-10 21:14:14 +0000
committertb <>2024-01-10 21:14:14 +0000
commitd724dfdd9b09c8f97d2a04a6ea8b0e7100b43f2b (patch)
tree6a7090ec65dc3f0a466b10b46c13fbfd9b7be8bd /src/lib
parent43fd67915d7f16fede4a13b7fc8fc14d98aeffa2 (diff)
downloadopenbsd-d724dfdd9b09c8f97d2a04a6ea8b0e7100b43f2b.tar.gz
openbsd-d724dfdd9b09c8f97d2a04a6ea8b0e7100b43f2b.tar.bz2
openbsd-d724dfdd9b09c8f97d2a04a6ea8b0e7100b43f2b.zip
X509_TRUST: hoist trust_compat() to the other end of the file
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/x509/x509_trs.c23
1 files changed, 11 insertions, 12 deletions
diff --git a/src/lib/libcrypto/x509/x509_trs.c b/src/lib/libcrypto/x509/x509_trs.c
index f42c34b087..c1191b40ed 100644
--- a/src/lib/libcrypto/x509/x509_trs.c
+++ b/src/lib/libcrypto/x509/x509_trs.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: x509_trs.c,v 1.36 2024/01/10 21:11:37 tb Exp $ */ 1/* $OpenBSD: x509_trs.c,v 1.37 2024/01/10 21:14:14 tb Exp $ */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project 1999. 3 * project 1999.
4 */ 4 */
@@ -66,7 +66,16 @@
66 66
67static int trust_1oidany(X509_TRUST *trust, X509 *x, int flags); 67static int trust_1oidany(X509_TRUST *trust, X509 *x, int flags);
68static int trust_1oid(X509_TRUST *trust, X509 *x, int flags); 68static int trust_1oid(X509_TRUST *trust, X509 *x, int flags);
69static int trust_compat(X509_TRUST *trust, X509 *x, int flags); 69
70static int
71trust_compat(X509_TRUST *trust, X509 *x, int flags)
72{
73 X509_check_purpose(x, -1, 0);
74 if (x->ex_flags & EXFLAG_SS)
75 return X509_TRUST_TRUSTED;
76 else
77 return X509_TRUST_UNTRUSTED;
78}
70 79
71static int 80static int
72obj_trust(int id, X509 *x, int flags) 81obj_trust(int id, X509 *x, int flags)
@@ -296,13 +305,3 @@ trust_1oid(X509_TRUST *trust, X509 *x, int flags)
296 return obj_trust(trust->arg1, x, flags); 305 return obj_trust(trust->arg1, x, flags);
297 return X509_TRUST_UNTRUSTED; 306 return X509_TRUST_UNTRUSTED;
298} 307}
299
300static int
301trust_compat(X509_TRUST *trust, X509 *x, int flags)
302{
303 X509_check_purpose(x, -1, 0);
304 if (x->ex_flags & EXFLAG_SS)
305 return X509_TRUST_TRUSTED;
306 else
307 return X509_TRUST_UNTRUSTED;
308}