#ifndef HASH_HPP #define HASH_HPP #include <cstdint> #include <vector> void hash(std::uint64_t* dest, const std::vector<char>& input); #endif