mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
12 lines
338 B
C++
12 lines
338 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <ghc/filesystem.hpp>
|
|
|
|
std::string calculateSHA3_256(ghc::filesystem::path const& path);
|
|
|
|
std::string calculateSHA256(ghc::filesystem::path const& path);
|
|
|
|
std::string calculateSHA256Text(ghc::filesystem::path const& path);
|
|
|
|
std::string calculateHash(ghc::filesystem::path const& path);
|