This commit is contained in:
Your Name
2025-04-30 21:30:55 +12:00
parent 69ecc77d51
commit fe9c940a22
14 changed files with 26367 additions and 2 deletions

20
src/hash.hpp Normal file
View File

@@ -0,0 +1,20 @@
#ifndef HASH_HPP
#define HASH_HPP
#include <string>
#include <cstdint>
namespace dropshell {
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 dropshell
#endif