16 #ifndef ACSDK_CRYPTOINTERFACES_CRYPTOFACTORYINTERFACE_H_ 17 #define ACSDK_CRYPTOINTERFACES_CRYPTOFACTORYINTERFACE_H_ 28 namespace cryptoInterfaces {
87 virtual std::shared_ptr<KeyFactoryInterface>
getKeyFactory() noexcept = 0;
93 #endif // ACSDK_CRYPTOINTERFACES_CRYPTOFACTORYINTERFACE_H_ DigestType
Enumeration of all supported digest algorithms.
Definition: DigestType.h:31
virtual ~CryptoFactoryInterface() noexcept=default
Default destructor.
virtual std::shared_ptr< KeyFactoryInterface > getKeyFactory() noexcept=0
Provides key factory.
virtual std::unique_ptr< CryptoCodecInterface > createEncoder(AlgorithmType type) noexcept=0
Create new encoder cipher.
Whether or not curl logs should be emitted.
Definition: AVSConnectionManager.h:36
type
Definition: upload.py:443
virtual std::unique_ptr< DigestInterface > createDigest(DigestType type) noexcept=0
Create new hash function.
Crypto API factory interface.
Definition: CryptoFactoryInterface.h:42
AlgorithmType
Enumeration of all supported encryption protocols.
Definition: AlgorithmType.h:31
virtual std::unique_ptr< CryptoCodecInterface > createDecoder(AlgorithmType type) noexcept=0
Create new decodec cipher.