10Duke Scale C++ Client
Loading...
Searching...
No Matches
createLibcryptoException.h
1#ifndef TENDUKE_LIBCRYPTO_CREATELIBCRYPTOEXCEPTION_H
2#define TENDUKE_LIBCRYPTO_CREATELIBCRYPTOEXCEPTION_H
3
4#include "crypto/CryptoException.h"
5
6#include <string>
7
8namespace tenduke { namespace crypto { namespace libcrypto {
9
10
19 const std::string &errorCode,
20 const std::string &messageBody
21);
22
23
24}}}
25
26#endif // TENDUKE_LIBCRYPTO_CREATELIBCRYPTOEXCEPTION_H
Thrown when something goes with crypto.
Definition CryptoException.h:14
libcrypto based implementations of cryptography services.
Definition AsymmetricMessageDigest.h:15
crypto::CryptoException createLibcryptoException(const std::string &errorCode, const std::string &messageBody)
Utility function to create tenduke::crypto::CryptoException from libcrypto errors.
Definition createLibcryptoException.cpp:8
Cryptography services.
Definition CryptoException.h:7
Root for classes, functions and globals of 10Duke C++ Client.
Definition BackendConfiguration.h:7