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