SourcePP
Several modern C++20 libraries for sanely parsing Valve's formats.
Loading...
Searching...
No Matches
SHA256.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
10std::array<std::byte, 32> computeSHA256(std::span<const std::byte> buffer);
11
12} // namespace sourcepp::crypto
std::array< std::byte, 32 > computeSHA256(std::span< const std::byte > buffer)
Definition SHA256.cpp:9