IXWebSocket/ws/ixcrypto/IXHash.h

16 lines
217 B
C
Raw Normal View History

/*
* IXHash.h
* Author: Benjamin Sergeant
* Copyright (c) 2018 Machine Zone. All rights reserved.
*/
#pragma once
#include <vector>
namespace ix
{
uint64_t djb2Hash(const std::vector<uint8_t>& data);
}