8 lines
173 B
C++
8 lines
173 B
C++
#pragma once
|
|
|
|
namespace utils::hash
|
|
{
|
|
std::string get_file_hash(const std::string& file);
|
|
std::string get_buffer_hash(std::string& buffer, const std::string& filename);
|
|
}
|