/* * OCSP * (C) 2012 Jack Lloyd * * Botan is released under the Simplified BSD License (see license.txt) */ #ifndef BOTAN_OCSP_H__ #define BOTAN_OCSP_H__ #include #include namespace Botan { class Certificate_Store; namespace OCSP { class BOTAN_DLL Request { public: Request(const X509_Certificate& issuer_cert, const X509_Certificate& subject_cert) : m_issuer(issuer_cert), m_subject(subject_cert) {} std::vector BER_encode() const; std::string base64_encode() const; const X509_Certificate& issuer() const { return m_issuer; } const X509_Certificate& subject() const { return m_subject; } private: X509_Certificate m_issuer, m_subject; }; class BOTAN_DLL Response { public: Response() {} Response(const Certificate_Store& trusted_roots, const std::vector& response); Certificate_Status_Code status_for(const X509_Certificate& issuer, const X509_Certificate& subject) const; private: std::vector m_responses; }; BOTAN_DLL Response online_check(const X509_Certificate& issuer, const X509_Certificate& subject, const Certificate_Store* trusted_roots); } } #endif