IXWebSocket/ixcrypto/ixcrypto/IXHMac.h
2019-09-10 12:19:22 -07: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);
}