mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 03:20:11 +01:00
68 lines
1.3 KiB
C++
68 lines
1.3 KiB
C++
//
|
|
// CipherFactory.h
|
|
//
|
|
// $Id$
|
|
//
|
|
// Library: Crypto_Win
|
|
// Package: Cipher
|
|
// Module: CipherFactory
|
|
//
|
|
// Definition of the CipherFactory class.
|
|
//
|
|
// Copyright (c) 2006-2014, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef Crypto_CipherFactory_INCLUDED
|
|
#define Crypto_CipherFactory_INCLUDED
|
|
|
|
|
|
#include "Poco/Crypto/Crypto.h"
|
|
|
|
|
|
namespace Poco {
|
|
namespace Crypto {
|
|
|
|
|
|
class Cipher;
|
|
class CipherKey;
|
|
class RSAKey;
|
|
|
|
|
|
class Crypto_Win_API CipherFactory
|
|
/// A factory for Cipher objects.
|
|
///
|
|
/// See the Cipher class for examples on how to
|
|
/// use the CipherFactory.
|
|
{
|
|
public:
|
|
CipherFactory();
|
|
/// Creates a new CipherFactory object.
|
|
|
|
virtual ~CipherFactory();
|
|
/// Destroys the CipherFactory.
|
|
|
|
Cipher* createCipher(const CipherKey& key);
|
|
/// Creates a Cipher object for the given CipherKey.
|
|
|
|
//Cipher* createCipher(const RSAKey& key, RSAPaddingMode paddingMode = RSA_PADDING_PKCS1);
|
|
/// Creates a RSACipher using the given RSA key and padding mode
|
|
/// for public key encryption/private key decryption.
|
|
|
|
static CipherFactory& defaultFactory();
|
|
/// Returns the default CipherFactory.
|
|
|
|
private:
|
|
CipherFactory(const CipherFactory&);
|
|
CipherFactory& operator = (const CipherFactory&);
|
|
};
|
|
|
|
|
|
} } // namespace Poco::Crypto
|
|
|
|
|
|
#endif // Crypto_CipherFactory_INCLUDED
|