mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
68 lines
1.4 KiB
C++
68 lines
1.4 KiB
C++
|
//
|
||
|
// PrivateKeyFactoryMgr.cpp
|
||
|
//
|
||
|
// Library: NetSSL_OpenSSL
|
||
|
// Package: SSLCore
|
||
|
// Module: PrivateKeyFactoryMgr
|
||
|
//
|
||
|
// Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH.
|
||
|
// and Contributors.
|
||
|
//
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
//
|
||
|
|
||
|
|
||
|
#include "Poco/Net/PrivateKeyFactoryMgr.h"
|
||
|
#include "Poco/Net/KeyFileHandler.h"
|
||
|
#include "Poco/Net/KeyConsoleHandler.h"
|
||
|
|
||
|
|
||
|
namespace Poco {
|
||
|
namespace Net {
|
||
|
|
||
|
|
||
|
PrivateKeyFactoryMgr::PrivateKeyFactoryMgr()
|
||
|
{
|
||
|
setFactory("KeyFileHandler", new PrivateKeyFactoryImpl<KeyFileHandler>());
|
||
|
setFactory("KeyConsoleHandler", new PrivateKeyFactoryImpl<KeyConsoleHandler>());
|
||
|
}
|
||
|
|
||
|
|
||
|
PrivateKeyFactoryMgr::~PrivateKeyFactoryMgr()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
void PrivateKeyFactoryMgr::setFactory(const std::string& name, PrivateKeyFactory* pFactory)
|
||
|
{
|
||
|
bool success = _factories.insert(make_pair(name, Poco::SharedPtr<PrivateKeyFactory>(pFactory))).second;
|
||
|
if (!success)
|
||
|
delete pFactory;
|
||
|
poco_assert(success);
|
||
|
}
|
||
|
|
||
|
|
||
|
bool PrivateKeyFactoryMgr::hasFactory(const std::string& name) const
|
||
|
{
|
||
|
return _factories.find(name) != _factories.end();
|
||
|
}
|
||
|
|
||
|
|
||
|
const PrivateKeyFactory* PrivateKeyFactoryMgr::getFactory(const std::string& name) const
|
||
|
{
|
||
|
FactoriesMap::const_iterator it = _factories.find(name);
|
||
|
if (it != _factories.end())
|
||
|
return it->second;
|
||
|
else
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
|
||
|
void PrivateKeyFactoryMgr::removeFactory(const std::string& name)
|
||
|
{
|
||
|
_factories.erase(name);
|
||
|
}
|
||
|
|
||
|
|
||
|
} } // namespace Poco::Net
|