mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-23 21:27:14 +01:00
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
66 lines
1.0 KiB
C++
66 lines
1.0 KiB
C++
//
|
|
// CipherFactory.cpp
|
|
//
|
|
// Library: Crypto
|
|
// Package: Cipher
|
|
// Module: CipherFactory
|
|
//
|
|
// Copyright (c) 2008, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/Crypto/CipherFactory.h"
|
|
#include "Poco/Crypto/Cipher.h"
|
|
#include "Poco/Crypto/CipherKey.h"
|
|
#include "Poco/Crypto/RSAKey.h"
|
|
#include "Poco/Crypto/CipherImpl.h"
|
|
#include "Poco/Crypto/RSACipherImpl.h"
|
|
#include "Poco/Exception.h"
|
|
#include "Poco/SingletonHolder.h"
|
|
#include <openssl/evp.h>
|
|
#include <openssl/err.h>
|
|
|
|
|
|
namespace Poco {
|
|
namespace Crypto {
|
|
|
|
|
|
CipherFactory::CipherFactory()
|
|
{
|
|
}
|
|
|
|
|
|
CipherFactory::~CipherFactory()
|
|
{
|
|
}
|
|
|
|
|
|
namespace
|
|
{
|
|
static Poco::SingletonHolder<CipherFactory> holder;
|
|
}
|
|
|
|
|
|
CipherFactory& CipherFactory::defaultFactory()
|
|
{
|
|
return *holder.get();
|
|
}
|
|
|
|
|
|
Cipher* CipherFactory::createCipher(const CipherKey& key)
|
|
{
|
|
return new CipherImpl(key);
|
|
}
|
|
|
|
|
|
Cipher* CipherFactory::createCipher(const RSAKey& key, RSAPaddingMode paddingMode)
|
|
{
|
|
return new RSACipherImpl(key, paddingMode);
|
|
}
|
|
|
|
|
|
} } // namespace Poco::Crypto
|