mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-13 11:32:29 +00:00
feat(util): add HMAC-SHA1 utility function
This commit is contained in:
parent
fc622cceed
commit
1246a5a4da
2 changed files with 46 additions and 0 deletions
8
src/util/HMAC.hpp
Normal file
8
src/util/HMAC.hpp
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#ifndef UTIL_HMAC_HPP
|
||||
#define UTIL_HMAC_HPP
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
void HMAC_SHA1(const uint8_t* key, uint32_t keyLen, const uint8_t* data, uint32_t dataLen, uint8_t* out);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue