10Duke Enterprise C++ Client
Loading...
Searching...
No Matches
WinCNGPrivateKey.h
1#ifndef TENDUKE_CRYPTO_WIN_CNG_WINCNGPRIVATEKEY_H
2#define TENDUKE_CRYPTO_WIN_CNG_WINCNGPRIVATEKEY_H
3
4#include "./WinCNGKey.h"
5
6#include <memory>
7
8#include "bcrypt/BCryptKey.h"
9
10namespace tenduke { namespace crypto { namespace win { namespace cng {
11
12class WinCNGPrivateKey : public ::tenduke::crypto::win::cng::WinCNGKey
13{
14public:
15 explicit WinCNGPrivateKey(std::unique_ptr<::tenduke::crypto::win::cng::BCryptKey> key)
17 {}
18};
19
20}}}}
21
22#endif //TENDUKE_CRYPTO_WIN_CNG_WINCNGPRIVATEKEY_H
Definition WinCNGKey.h:10
Cryptography services.
Definition CryptoException.h:7
Root for classes, functions and globals of 10Duke C++ Client.
Definition APIRequest.h:4