10Duke Enterprise C++ SDK
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#include "../bcrypt/BCryptKey.h"
6
7#include <memory>
8
9
10namespace tenduke { namespace crypto { namespace win { namespace cng {
11
15class WinCNGPrivateKey : public ::tenduke::crypto::win::cng::WinCNGKey
16{
17public:
18 explicit WinCNGPrivateKey(std::unique_ptr<::tenduke::crypto::win::cng::BCryptKey> key)
20 {}
21};
22
23}}}}
24
25#endif //TENDUKE_CRYPTO_WIN_CNG_WINCNGPRIVATEKEY_H
Definition WinCNGKey.h:10
Cryptography services.
Definition AbstractCiphers.h:18
Root for classes, functions and globals of 10Duke C++ Client.
Definition APIRequest.h:4