libbasen v1.1.0
encoding/decoding from arbitrary base
Loading...
Searching...
No Matches
sha256.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <cstdint>
4#include <span>
5#include <vector>
6
7namespace hash
8{
9 void sha256(const uint8_t *data, size_t data_size, uint8_t *hash) noexcept;
10 std::vector<uint8_t> sha256(std::span<const uint8_t> data) noexcept;
11}
Definition sha256.hpp:8
void sha256(const uint8_t *data, size_t data_size, uint8_t *hash) noexcept