LeviLamina
Loading...
Searching...
No Matches
NullSSLHashInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/crypto/hash/IHash.h"
7#include "mc/deps/crypto/hash/md5.h"
8
9namespace Crypto::Hash {
10
12public:
13 // member variables
14 // NOLINTBEGIN
15 ::ll::TypedStorage<4, 160, ::Crypto::Hash::md5> mMd5;
16 // NOLINTEND
17
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 virtual ~NullSSLHashInterface() /*override*/ = default;
22
23 virtual void reset() /*override*/;
24
25 virtual void update(void const*, uint) /*override*/;
26
27 virtual void final(uchar*) /*override*/;
28
29 virtual uint64 resultSize() const /*override*/;
30 // NOLINTEND
31
32public:
33 // virtual function thunks
34 // NOLINTBEGIN
35
36 // NOLINTEND
37};
38
39} // namespace Crypto::Hash
Definition IHash.h:7
Definition NullSSLHashInterface.h:11