LeviLamina
Loading...
Searching...
No Matches
PrivateKeyManager.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/certificates/KeyManager.h"
7#include "mc/deps/crypto/asymmetric/system/System.h"
8
9class PrivateKeyManager : public ::KeyManager {
10public:
11 // member variables
12 // NOLINTBEGIN
14 // NOLINTEND
15
16public:
17 // prevent constructor by default
18 PrivateKeyManager& operator=(PrivateKeyManager const&);
19 PrivateKeyManager(PrivateKeyManager const&);
20 PrivateKeyManager();
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 virtual bool isValid() const /*override*/;
26
27 virtual ~PrivateKeyManager() /*override*/;
28 // NOLINTEND
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCNAPI explicit PrivateKeyManager(::Crypto::Asymmetric::System system);
34
35 MCNAPI ::std::string computeSecret(::KeyManager const& peer) const;
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41 MCNAPI void* $ctor(::Crypto::Asymmetric::System system);
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47 MCNAPI void $dtor();
48 // NOLINTEND
49
50public:
51 // virtual function thunks
52 // NOLINTBEGIN
53 MCNAPI bool $isValid() const;
54
55
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCNAPI static void** $vftable();
62 // NOLINTEND
63};
static MCAPI void ** $vftable()
MCAPI void $dtor()
MCAPI PrivateKeyManager(::Crypto::Asymmetric::System system)
MCAPI void * $ctor(::Crypto::Asymmetric::System system)
MCAPI bool $isValid() const
MCAPI::std::string computeSecret(::KeyManager const &peer) const
Definition Alias.h:14