thunderbrew/src/util/HMAC.hpp
2023-03-23 22:56:59 -05:00

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