LeviLamina
Loading...
Searching...
No Matches
Certificate.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/crypto/certificate/Encoding.h"
7#include "mc/deps/crypto/certificate/ISystemInterface.h"
8#include "mc/deps/crypto/certificate/ThumbprintFormat.h"
9#include "mc/deps/crypto/hash/HashType.h"
10
11namespace Crypto::Certificate {
12
14public:
15 // member variables
16 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 Certificate& operator=(Certificate const&);
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 // vIndex: 0
30 virtual ~Certificate() /*override*/ = default;
31
32 // vIndex: 1
33 virtual ::std::string serialize(::Crypto::Certificate::Encoding) const /*override*/;
34
35 // vIndex: 2
36 virtual ::std::string extractPublicKey(::Crypto::Certificate::Encoding) const /*override*/;
37
38 // vIndex: 3
39 virtual ::std::string extractPrivateKey(::Crypto::Certificate::Encoding) const /*override*/;
40
41 // vIndex: 4
42 virtual ::std::string getIssuer() const /*override*/;
43
44 // vIndex: 5
45 virtual bool hasValidCertChain() const /*override*/;
46
47 // vIndex: 6
48 virtual ::std::string
49 generateCertificateThumbprint(::Crypto::Hash::HashType, ::Crypto::Certificate::ThumbprintFormat) const
50 /*override*/;
51
52 // vIndex: 7
53 virtual ::std::string
54 generatePublicKeyThumbprint(::Crypto::Hash::HashType, ::Crypto::Certificate::ThumbprintFormat) const
55 /*override*/;
56 // NOLINTEND
57
58public:
59 // destructor thunk
60 // NOLINTBEGIN
61
62 // NOLINTEND
63
64public:
65 // virtual function thunks
66 // NOLINTBEGIN
67
68 // NOLINTEND
69};
70
71} // namespace Crypto::Certificate
Definition Certificate.h:13
Definition ISystemInterface.h:12
Definition Alias.h:14
Definition serialize.h:11