LeviLamina
Loading...
Searching...
No Matches
NullSSLInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/crypto/asymmetric/ISystemInterface.h"
7#include "mc/deps/crypto/asymmetric/Padding.h"
8#include "mc/deps/crypto/asymmetric/PrivateKeySigningFormat.h"
9#include "mc/deps/crypto/asymmetric/PubKeyFormat.h"
10#include "mc/deps/crypto/hash/HashType.h"
11
12namespace Crypto::Asymmetric {
13
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 // vIndex: 0
19 virtual ~NullSSLInterface() /*override*/ = default;
20
21 // vIndex: 1
22 virtual bool generateKeyPair(::std::string&, ::std::string&) /*override*/;
23
24 // vIndex: 2
25 virtual bool constructPublicKey(::std::string const&, ::std::string const&, ::std::string&) /*override*/;
26
27 // vIndex: 3
28 virtual ::std::string encryptData(
29 ::std::string const&,
30 ::std::string const&,
31 ::Crypto::Asymmetric::Padding,
32 ::Crypto::Asymmetric::PubKeyFormat
33 ) /*override*/;
34
35 // vIndex: 4
36 virtual ::std::string
37 decryptData(::std::string const&, ::std::string const&, ::Crypto::Asymmetric::Padding) /*override*/;
38
39 // vIndex: 5
40 virtual ::std::string signData(
41 ::std::string const&,
42 ::std::string const&,
43 ::Crypto::Hash::HashType,
44 ::Crypto::Asymmetric::PrivateKeySigningFormat
45 ) /*override*/;
46
47 // vIndex: 6
48 virtual bool
49 verifyData(::std::string const&, ::std::string const&, ::std::string const&, ::Crypto::Hash::HashType) /*override*/;
50
51 // vIndex: 7
52 virtual ::std::string computeSharedSecret(::std::string const&, ::std::string const&) /*override*/;
53 // NOLINTEND
54
55public:
56 // virtual function thunks
57 // NOLINTBEGIN
58
59 // NOLINTEND
60};
61
62} // namespace Crypto::Asymmetric
Definition ISystemInterface.h:13
Definition NullSSLInterface.h:14