/* */ #ifndef _D_LIBSSL_TLS_CONTEXT_H_ #define _D_LIBSSL_TLS_CONTEXT_H_ #include "common.h" #include # include #include "DlAbortEx.h" namespace aria2 { class Logger; class TLSContext { private: SSL_CTX* _sslCtx; bool _good; bool _peerVerificationEnabled; Logger* _logger; 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_