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.h"
8
10public:
11 // member variables
12 // NOLINTBEGIN
14 // NOLINTEND
15
16public:
17 // prevent constructor by default
18 PrivateKeyManager& operator=(PrivateKeyManager const&);
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 // vIndex: 1
26 virtual bool isValid() const /*override*/;
27
28 // vIndex: 0
29 virtual ~PrivateKeyManager() /*override*/;
30 // NOLINTEND
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI explicit PrivateKeyManager(::Crypto::Asymmetric::System system);
36
37 MCAPI ::std::string computeSecret(::KeyManager const& peer) const;
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCAPI void* $ctor(::Crypto::Asymmetric::System system);
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49 MCAPI void $dtor();
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55 MCAPI bool $isValid() const;
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCAPI static void** $vftable();
62 // NOLINTEND
63};
Definition KeyManager.h:8
Definition PrivateKeyManager.h:9
Definition Alias.h:14