This commit is contained in:
Günter Obiltschnig
2020-01-10 11:34:35 +01:00
parent a2f8f8fbe1
commit 821d80b76e
5 changed files with 19 additions and 17 deletions

View File

@@ -32,7 +32,7 @@ class NetSSL_API CertificateHandlerFactoryMgr
/// A CertificateHandlerFactoryMgr manages all existing CertificateHandlerFactories. /// A CertificateHandlerFactoryMgr manages all existing CertificateHandlerFactories.
{ {
public: public:
typedef std::map<std::string, Poco::SharedPtr<CertificateHandlerFactory> > FactoriesMap; using FactoriesMap = std::map<std::string, Poco::SharedPtr<CertificateHandlerFactory>>;
CertificateHandlerFactoryMgr(); CertificateHandlerFactoryMgr();
/// Creates the CertificateHandlerFactoryMgr. /// Creates the CertificateHandlerFactoryMgr.

View File

@@ -59,7 +59,7 @@ class NetSSL_API Context: public Poco::RefCountedObject
/// cipher configuration (cipherList). /// cipher configuration (cipherList).
{ {
public: public:
typedef Poco::AutoPtr<Context> Ptr; using Ptr = Poco::AutoPtr<Context>;
enum Usage enum Usage
{ {
@@ -412,9 +412,11 @@ inline Context::Usage Context::usage() const
inline bool Context::isForServerUse() const inline bool Context::isForServerUse() const
{ {
return _usage == SERVER_USE return _usage == SERVER_USE
|| _usage == TLS_SERVER_USE
|| _usage == TLSV1_SERVER_USE || _usage == TLSV1_SERVER_USE
|| _usage == TLSV1_1_SERVER_USE || _usage == TLSV1_1_SERVER_USE
|| _usage == TLSV1_2_SERVER_USE; || _usage == TLSV1_2_SERVER_USE
|| _usage == TLSV1_3_SERVER_USE;
} }

View File

@@ -32,7 +32,7 @@ class NetSSL_API PrivateKeyFactoryMgr
/// A PrivateKeyFactoryMgr manages all existing PrivateKeyFactories. /// A PrivateKeyFactoryMgr manages all existing PrivateKeyFactories.
{ {
public: public:
typedef std::map<std::string, Poco::SharedPtr<PrivateKeyFactory> > FactoriesMap; using FactoriesMap = std::map<std::string, Poco::SharedPtr<PrivateKeyFactory>>;
PrivateKeyFactoryMgr(); PrivateKeyFactoryMgr();
/// Creates the PrivateKeyFactoryMgr. /// Creates the PrivateKeyFactoryMgr.

View File

@@ -157,8 +157,8 @@ class NetSSL_API SSLManager
/// Please see the Context class documentation regarding TLSv1.3 support. /// Please see the Context class documentation regarding TLSv1.3 support.
{ {
public: public:
typedef Poco::SharedPtr<PrivateKeyPassphraseHandler> PrivateKeyPassphraseHandlerPtr; using PrivateKeyPassphraseHandlerPtr = Poco::SharedPtr<PrivateKeyPassphraseHandler>;
typedef Poco::SharedPtr<InvalidCertificateHandler> InvalidCertificateHandlerPtr; using InvalidCertificateHandlerPtr = Poco::SharedPtr<InvalidCertificateHandler>;
Poco::BasicEvent<VerificationErrorArgs> ServerVerificationError; Poco::BasicEvent<VerificationErrorArgs> ServerVerificationError;
/// Fired whenever a certificate verification error is detected by the server during a handshake. /// Fired whenever a certificate verification error is detected by the server during a handshake.

View File

@@ -37,7 +37,7 @@ class NetSSL_API Session: public Poco::RefCountedObject
/// if it wants to reuse it with a future connection. /// if it wants to reuse it with a future connection.
{ {
public: public:
typedef Poco::AutoPtr<Session> Ptr; using Ptr = Poco::AutoPtr<Session>;
SSL_SESSION* sslSession() const; SSL_SESSION* sslSession() const;
/// Returns the stored OpenSSL SSL_SESSION object. /// Returns the stored OpenSSL SSL_SESSION object.