Files
simple-object-server/src/hash.hpp
Your Name 66cfde013c Db
2025-05-03 09:36:54 +12:00

20 lines
365 B
C++

#ifndef HASH_HPP
#define HASH_HPP
#include <string>
#include <cstdint>
namespace simple_object_storage {
uint64_t hash_file(const std::string &path);
uint64_t hash_directory_recursive(const std::string &path);
void hash_demo(const std::string & path);
int hash_demo_raw(const std::string & path);
} // namespace simple_object_storage
#endif