roar
Loading...
Searching...
No Matches
sha.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <string_view>
5#include <optional>
6
7namespace Roar
8{
9 std::optional<std::string> sha256(std::string_view data);
10 std::optional<std::string> sha512(std::string_view data);
11}
Definition authorization.hpp:10
std::optional< std::string > sha256(std::string_view data)
Definition sha.cpp:45
std::optional< std::string > sha512(std::string_view data)
Definition sha.cpp:50