/* */ #ifndef D_LIBSSL_TLS_CONTEXT_H #define D_LIBSSL_TLS_CONTEXT_H #include "common.h" #include # include #include "DlAbortEx.h" namespace aria2 { class TLSContext { private: SSL_CTX* sslCtx_; bool good_; bool peerVerificationEnabled_; public: TLSContext(); ~TLSContext(); // private key `keyfile' must be decrypted. bool addClientKeyFile(const std::string& certfile, const std::string& keyfile); // certfile can contain multiple certificates. bool addTrustedCACertFile(const std::string& certfile); bool good() const; bool bad() const; SSL_CTX* getSSLCtx() const { return sslCtx_; } void enablePeerVerification(); void disablePeerVerification(); bool peerVerificationEnabled() const { return peerVerificationEnabled_; } }; } // namespace aria2 #endif // D_LIBSSL_TLS_CONTEXT_H