LeviLamina
Loading...
Searching...
No Matches
NullSSLCertificateInterface.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 // virtual functions
16 // NOLINTBEGIN
17 // vIndex: 0
18 virtual ~NullSSLCertificateInterface() /*override*/ = default;
19
20 // vIndex: 1
21 virtual ::std::string serialize(::Crypto::Certificate::Encoding) const /*override*/;
22
23 // vIndex: 2
24 virtual ::std::string extractPublicKey(::Crypto::Certificate::Encoding) const /*override*/;
25
26 // vIndex: 3
27 virtual ::std::string extractPrivateKey(::Crypto::Certificate::Encoding) const /*override*/;
28
29 // vIndex: 4
30 virtual ::std::string getIssuer() const /*override*/;
31
32 // vIndex: 5
33 virtual bool hasValidCertChain() const /*override*/;
34
35 // vIndex: 6
36 virtual ::std::string
37 generateCertificateThumbprint(::Crypto::Hash::HashType, ::Crypto::Certificate::ThumbprintFormat) const
38 /*override*/;
39
40 // vIndex: 7
41 virtual ::std::string
42 generatePublicKeyThumbprint(::Crypto::Hash::HashType, ::Crypto::Certificate::ThumbprintFormat) const
43 /*override*/;
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55
56 // NOLINTEND
57};
58
59} // namespace Crypto::Certificate
Definition ISystemInterface.h:12
Definition NullSSLCertificateInterface.h:13
Definition serialize.h:11