IXWebSocket/ws/ixcrypto/IXHash.h
2019-05-30 08:46:50 -07:00

16 lines
235 B
C++

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