diff options
author | Jack Lloyd <[email protected]> | 2018-01-03 12:17:02 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-01-03 12:17:02 -0500 |
commit | c697fe0a2f199b4ccc415f5a3e2d0182d91a8fa7 (patch) | |
tree | 4c4d397ce577af7f9f4dbd49ba6159567432bf2d /src/lib/x509/x509cert.h | |
parent | b1297f6352e2a24db7cd0776a788ac4570f1dcb2 (diff) | |
parent | b8b962648f8b8b564026e18a94e2e0f3f4757626 (diff) |
Merge GH #1381 Support caIssuers in AIA X509 extension
Diffstat (limited to 'src/lib/x509/x509cert.h')
-rw-r--r-- | src/lib/x509/x509cert.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/x509/x509cert.h b/src/lib/x509/x509cert.h index e87e5e436..a1448637d 100644 --- a/src/lib/x509/x509cert.h +++ b/src/lib/x509/x509cert.h @@ -346,6 +346,11 @@ class BOTAN_PUBLIC_API(2,0) X509_Certificate : public X509_Object std::string ocsp_responder() const; /** + * Return the listed addresses of ca issuers, or empty if not set + */ + std::vector<std::string> ca_issuers() const; + + /** * Return the CRL distribution point, or empty if not set */ std::string crl_distribution_point() const; |