LeviLamina
Loading...
Searching...
No Matches
Hash.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/crypto/hash/HashType.h"
7#include "mc/deps/crypto/hash/IHash.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace mce { class UUID; }
12// clang-format on
13
14namespace Crypto::Hash {
15
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<4, 4, ::Crypto::Hash::HashType> mHashType;
21 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::Crypto::Hash::IHash>> mHash;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 // vIndex: 0
28 virtual ~Hash() /*override*/;
29
30 // vIndex: 1
31 virtual void reset() /*override*/;
32
33 // vIndex: 2
34 virtual void update(void const* data, uint size) /*override*/;
35
36 // vIndex: 3
37 virtual void final(uchar* result) /*override*/;
38
39 // vIndex: 4
40 virtual uint64 resultSize() const /*override*/;
41 // NOLINTEND
42
43public:
44 // member functions
45 // NOLINTBEGIN
46 MCAPI ::mce::UUID getUUID();
47 // NOLINTEND
48
49public:
50 // destructor thunk
51 // NOLINTBEGIN
52 MCFOLD void $dtor();
53 // NOLINTEND
54
55public:
56 // virtual function thunks
57 // NOLINTBEGIN
58 MCFOLD void $reset();
59
60 MCAPI void $update(void const* data, uint size);
61
62 MCAPI void $final(uchar* result);
63
64 MCAPI uint64 $resultSize() const;
65 // NOLINTEND
66
67public:
68 // vftables
69 // NOLINTBEGIN
70 MCAPI static void** $vftable();
71 // NOLINTEND
72};
73
74} // namespace Crypto::Hash
Definition Hash.h:16
Definition IHash.h:7