SourcePP
Several modern C++20 libraries for sanely parsing Valve's formats.
Loading...
Searching...
No Matches
CRC32.h
Go to the documentation of this file.
1#pragma once
2
3#include <cstddef>
4#include <span>
5
6#include <sourcepp/Math.h>
7
8namespace sourcepp::crypto {
9
10uint32_t computeCRC32(std::span<const std::byte> buffer);
11
12} // namespace sourcepp::crypto
uint32_t computeCRC32(std::span< const std::byte > buffer)
Definition: CRC32.cpp:7