#include "hash.hpp" // shh, its fine :-) #include "sha3.cpp" #include #include #include #include "picosha2.h" #include template void readBuffered(std::ifstream& stream, Func func) { constexpr size_t BUF_SIZE = 4096; stream.exceptions(std::ios_base::badbit); std::vector buffer(BUF_SIZE); while (true) { stream.read(reinterpret_cast(buffer.data()), BUF_SIZE); size_t amt = stream ? BUF_SIZE : stream.gcount(); func(buffer.data(), amt); if (!stream) break; } } std::string calculateSHA3_256(ghc::filesystem::path const& path) { std::ifstream file(path, std::ios::binary); SHA3 sha; readBuffered(file, [&](const void* data, size_t amt) { sha.add(data, amt); }); return sha.getHash(); } std::string calculateSHA256(ghc::filesystem::path const& path) { std::vector hash(picosha2::k_digest_size); std::ifstream file(path, std::ios::binary); picosha2::hash256(file, hash.begin(), hash.end()); return picosha2::bytes_to_hex_string(hash.begin(), hash.end()); } std::string calculateHash(ghc::filesystem::path const& path) { return calculateSHA3_256(path); }