mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
9 lines
179 B
C++
9 lines
179 B
C++
|
|
#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
|