thunderbrew/src/util/HMAC.hpp

9 lines
179 B
C++
Raw Normal View History

#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