2022-08-01 11:18:03 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
2024-02-11 13:58:46 -05:00
|
|
|
#include <ghc/fs_fwd.hpp>
|
2022-08-01 11:18:03 -04:00
|
|
|
|
2023-08-03 16:24:04 -04:00
|
|
|
std::string calculateSHA3_256(ghc::filesystem::path const& path);
|
2022-10-14 14:04:59 -04:00
|
|
|
|
2023-08-03 16:24:04 -04:00
|
|
|
std::string calculateSHA256(ghc::filesystem::path const& path);
|
2022-10-14 14:04:59 -04:00
|
|
|
|
2024-01-22 12:42:11 -05:00
|
|
|
std::string calculateSHA256Text(ghc::filesystem::path const& path);
|
|
|
|
|
2023-08-03 16:24:04 -04:00
|
|
|
std::string calculateHash(ghc::filesystem::path const& path);
|