diff options
Diffstat (limited to 'src/lib/x509')
-rw-r--r-- | src/lib/x509/ocsp.h | 16 | ||||
-rw-r--r-- | src/lib/x509/x509_ext.h | 2 |
2 files changed, 10 insertions, 8 deletions
diff --git a/src/lib/x509/ocsp.h b/src/lib/x509/ocsp.h index 550fd09e2..dc3532247 100644 --- a/src/lib/x509/ocsp.h +++ b/src/lib/x509/ocsp.h @@ -163,10 +163,11 @@ class BOTAN_PUBLIC_API(2,0) Response #if defined(BOTAN_HAS_HTTP_UTIL) -BOTAN_DLL Response online_check(const X509_Certificate& issuer, - const BigInt& subject_serial, - const std::string& ocsp_responder, - Certificate_Store* trusted_roots); +BOTAN_PUBLIC_API(2,1) +Response online_check(const X509_Certificate& issuer, + const BigInt& subject_serial, + const std::string& ocsp_responder, + Certificate_Store* trusted_roots); /** * Makes an online OCSP request via HTTP and returns the OCSP response. @@ -175,9 +176,10 @@ BOTAN_DLL Response online_check(const X509_Certificate& issuer, * @param trusted_roots trusted roots for the OCSP response * @return OCSP response */ -BOTAN_PUBLIC_API(2,0) Response online_check(const X509_Certificate& issuer, - const X509_Certificate& subject, - Certificate_Store* trusted_roots); +BOTAN_PUBLIC_API(2,0) +Response online_check(const X509_Certificate& issuer, + const X509_Certificate& subject, + Certificate_Store* trusted_roots); #endif diff --git a/src/lib/x509/x509_ext.h b/src/lib/x509/x509_ext.h index 22598d41a..a77edc194 100644 --- a/src/lib/x509/x509_ext.h +++ b/src/lib/x509/x509_ext.h @@ -83,7 +83,7 @@ class BOTAN_PUBLIC_API(2,0) Certificate_Extension /** * X.509 Certificate Extension List */ -class BOTAN_UNSTABLE_API Extensions : public ASN1_Object +class BOTAN_PUBLIC_API(2,0) Extensions : public ASN1_Object { public: void encode_into(class DER_Encoder&) const override; |