Files
simple-object-server/src/compress.hpp
Your Name 623879f67a
All checks were successful
Build-Test-Publish / build (linux/amd64) (push) Successful in 1m26s
Build-Test-Publish / build (linux/arm64) (push) Successful in 2m14s
Build-Test-Publish / create-manifest (push) Successful in 13s
test: Add 1 and update 10 files
2025-08-10 22:33:56 +12:00

8 lines
227 B
C++

#include <string>
namespace simple_object_storage {
// Returns SHA-256 hash of unpacked tgz contents, or empty string on error
std::string get_hash_from_tgz(const std::string& file_path);
} // namespace simple_object_storage