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