Atlas Game Manager
A game manager for f95 and dlsite written in c++
Loading...
Searching...
No Matches
crypto.hpp
Go to the documentation of this file.
1//
2// Created by kj16609 on 9/22/23.
3//
4
5#pragma once
6#ifndef ATLASGAMEMANAGER_CRYPTO_HPP
7#define ATLASGAMEMANAGER_CRYPTO_HPP
8
9#include <filesystem>
10#include <string>
11
13{
14
15 std::string hashFile( const std::filesystem::path path );
16
17 std::string hash( const QByteArrayView view );
18
19} // namespace atlas::crypto::sha256
20
21#endif //ATLASGAMEMANAGER_CRYPTO_HPP
Definition crypto.cpp:16
std::string hash(const QByteArrayView view)
Definition crypto.cpp:43
std::string hashFile(const std::filesystem::path path)
Definition crypto.cpp:18