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 ::std::string encryptData(
26 ::std::string const&,
27 ::std::string const&,
28 ::Crypto::Asymmetric::Padding,
29 ::Crypto::Asymmetric::PubKeyFormat
30 ) /*override*/;
31
32 // vIndex: 3
33 virtual ::std::string
34 decryptData(::std::string const&, ::std::string const&, ::Crypto::Asymmetric::Padding) /*override*/;
35
36 // vIndex: 4
37 virtual ::std::string signData(
38 ::std::string const&,
39 ::std::string const&,
40 ::Crypto::Hash::HashType,
41 ::Crypto::Asymmetric::PrivateKeySigningFormat
42 ) /*override*/;
43
44 // vIndex: 5
45 virtual bool
46 verifyData(::std::string const&, ::std::string const&, ::std::string const&, ::Crypto::Hash::HashType) /*override*/;
47
48 // vIndex: 6
49 virtual ::std::string computeSharedSecret(::std::string const&, ::std::string const&) /*override*/;
50 // NOLINTEND
51
52public:
53 // destructor thunk
54 // NOLINTBEGIN
55
56 // NOLINTEND
57
58public:
59 // virtual function thunks
60 // NOLINTBEGIN
61
62 // NOLINTEND
63};
64
65} // namespace Crypto::Asymmetric
Definition ISystemInterface.h:13
Definition NullSSLInterface.h:14