LeviLamina
Loading...
Searching...
No Matches
HMAC.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
8namespace Crypto::Hash {
9
10class HMAC {
11public:
12 // member variables
13 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 HMAC& operator=(HMAC const&);
22 HMAC(HMAC const&);
23 HMAC();
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI HMAC(::Crypto::Hash::HashType type, ::std::string const& key, int resultSize);
29
30 MCAPI void signAndAppend(::std::string const& data, ::std::string& out, uint64 counter);
31 // NOLINTEND
32
33public:
34 // constructor thunks
35 // NOLINTBEGIN
36 MCAPI void* $ctor(::Crypto::Hash::HashType type, ::std::string const& key, int resultSize);
37 // NOLINTEND
38};
39
40} // namespace Crypto::Hash
Definition HMAC.h:10
Definition Alias.h:14