mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-23 16:48:06 +02:00
cleanup
This commit is contained in:
@@ -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.
|
||||||
|
@@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@@ -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.
|
||||||
|
@@ -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.
|
||||||
|
@@ -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.
|
||||||
|
Reference in New Issue
Block a user