IXWebSocket/examples/cobra_publisher/ixcrypto/IXHMac.h
2018-12-23 14:14:38 -08:00

15 lines
230 B
C++

/*
* IXHMac.h
* Author: Benjamin Sergeant
* Copyright (c) 2018 Machine Zone. All rights reserved.
*/
#pragma once
#include <string>
namespace ix
{
std::string hmac(const std::string& data, const std::string& key);
}