2012-04-29 18:52:25 +00:00
|
|
|
//
|
|
|
|
// PrivateKeyPassphraseHandler.cpp
|
|
|
|
//
|
|
|
|
// $Id: //poco/1.4/NetSSL_OpenSSL/src/PrivateKeyPassphraseHandler.cpp#1 $
|
|
|
|
//
|
|
|
|
// Library: NetSSL_OpenSSL
|
|
|
|
// Package: SSLCore
|
|
|
|
// Module: PrivateKeyPassphraseHandler
|
|
|
|
//
|
|
|
|
// Copyright (c) 2006-2009, Applied Informatics Software Engineering GmbH.
|
|
|
|
// and Contributors.
|
|
|
|
//
|
2014-05-04 21:02:42 +02:00
|
|
|
// SPDX-License-Identifier: BSL-1.0
|
2012-04-29 18:52:25 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
#include "Poco/Net/PrivateKeyPassphraseHandler.h"
|
|
|
|
#include "Poco/Net/SSLManager.h"
|
|
|
|
#include "Poco/Delegate.h"
|
|
|
|
|
|
|
|
|
|
|
|
using Poco::Delegate;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Poco {
|
|
|
|
namespace Net {
|
|
|
|
|
|
|
|
|
|
|
|
PrivateKeyPassphraseHandler::PrivateKeyPassphraseHandler(bool onServerSide): _serverSide(onServerSide)
|
|
|
|
{
|
|
|
|
SSLManager::instance().PrivateKeyPassphraseRequired += Delegate<PrivateKeyPassphraseHandler, std::string>(this, &PrivateKeyPassphraseHandler::onPrivateKeyRequested);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PrivateKeyPassphraseHandler::~PrivateKeyPassphraseHandler()
|
|
|
|
{
|
|
|
|
SSLManager::instance().PrivateKeyPassphraseRequired -= Delegate<PrivateKeyPassphraseHandler, std::string>(this, &PrivateKeyPassphraseHandler::onPrivateKeyRequested);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} } // namespace Poco::Net
|