summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2020-04-06 12:14:30 +0100
committerMatt Caswell <matt@openssl.org>2020-04-16 14:19:52 +0100
commit465f34ed27d54b36b47f98b8ce4b5ec9e33c4f02 (patch)
tree6c6ed230a1ee5ee92d63e18ef0783d19d0e8ed19 /include
parent0820217441b68724d91b7644f3560e15149a1848 (diff)
Introduce an internal version of X509_check_issued()
The internal version is library context aware. Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/11507)
Diffstat (limited to 'include')
-rw-r--r--include/crypto/x509.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/crypto/x509.h b/include/crypto/x509.h
index 560f3abb76..1d2ec3ee52 100644
--- a/include/crypto/x509.h
+++ b/include/crypto/x509.h
@@ -297,3 +297,7 @@ int x509_set1_time(ASN1_TIME **ptm, const ASN1_TIME *tm);
int x509_print_ex_brief(BIO *bio, X509 *cert, unsigned long neg_cflags);
void x509_init_sig_info(X509 *x);
+
+
+int x509_check_issued_int(X509 *issuer, X509 *subject, OPENSSL_CTX *libctx,
+ const char *propq);