LeviLamina
Loading...
Searching...
No Matches
NullSSLSymmetricInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/crypto/symmetric/ISystemInterface.h"
7
8namespace Crypto::Symmetric {
9
11public:
12 // member variables
13 // NOLINTBEGIN
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 // vIndex: 0
27 virtual ~NullSSLSymmetricInterface() /*override*/ = default;
28
29 // vIndex: 1
30 virtual void init(::std::string const&, ::std::string const&) /*override*/;
31
32 // vIndex: 2
33 virtual void encrypt(::std::string const&, ::std::string&) /*override*/;
34
35 // vIndex: 3
36 virtual void decrypt(::std::string const&, ::std::string&) /*override*/;
37
38 // vIndex: 4
39 virtual uint64 getKeySize() const /*override*/;
40
41 // vIndex: 5
42 virtual uint64 getBlockSize() const /*override*/;
43
44 // vIndex: 6
45 virtual uint64 getEncryptionBufferSize(uint64) const /*override*/;
46
47 // vIndex: 7
48 virtual bool encryptToBuffer(::gsl::span<char const>, ::gsl::span<char>, uint64&) /*override*/;
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60
61 // NOLINTEND
62};
63
64} // namespace Crypto::Symmetric
Definition ISystemInterface.h:7
Definition NullSSLSymmetricInterface.h:10
Definition Alias.h:14