mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-10-27 22:36:05 +03: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
|