mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-22 23:48:08 -05:00
324795cddb
remove ghc::filesystem :D closes #713
12 lines
330 B
C++
12 lines
330 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <filesystem>
|
|
|
|
std::string calculateSHA3_256(std::filesystem::path const& path);
|
|
|
|
std::string calculateSHA256(std::filesystem::path const& path);
|
|
|
|
std::string calculateSHA256Text(std::filesystem::path const& path);
|
|
|
|
std::string calculateHash(std::filesystem::path const& path);
|