summaryrefslogtreecommitdiffstats
path: root/core/math/crc64.hh
blob: f68c951e0a90864c7e3481a02d64bb80fb51c391 (plain)
1
2
3
4
5
6
7
8
#pragma once

namespace math
{
std::uint64_t crc64(const void* buffer, std::size_t size, std::uint64_t combine = UINT64_C(0));
std::uint64_t crc64(const std::vector<std::byte>& buffer, std::uint64_t combine = UINT64_C(0));
std::uint64_t crc64(const std::string& buffer, std::uint64_t combine = UINT64_C(0));
} // namespace math