10Duke Enterprise C++ SDK
Loading...
Searching...
No Matches
LibcryptoMessageDigestFactory.h
1#ifndef TENDUKE_CRYPTO_LIBCRYPTO_LIBCRYPTOMESSAGEDIGESTFACTORY_H
2#define TENDUKE_CRYPTO_LIBCRYPTO_LIBCRYPTOMESSAGEDIGESTFACTORY_H
3
4#include "crypto/MessageDigestFactory.h"
5
6namespace tenduke { namespace crypto { namespace libcrypto {
7
11class LibcryptoMessageDigestFactory : public tenduke::crypto::MessageDigestFactory {
12
13public:
14 std::unique_ptr<tenduke::crypto::MessageDigest> create(tenduke::crypto::MessageDigest::Algorithm algorithm) const override;
15
16};
17
18}}}
19
20#endif //TENDUKE_CRYPTO_LIBCRYPTO_LIBCRYPTOMESSAGEDIGESTFACTORY_H
Algorithm
Supported algorithms.
Definition MessageDigest.h:24
libcrypto based implementations of cryptography services.
Definition AsymmetricMessageDigest.h:15
Cryptography services.
Definition AbstractCiphers.h:12
Root for classes, functions and globals of 10Duke C++ Client.
Definition APIRequest.h:4