blob: ae8ab388e4ffc1b98ed17939a1bf96fd76126846 [file] [log] [blame]
#ifndef VTR_DIGEST_H
#define VTR_DIGEST_H
#include <iosfwd>
#include <string>
namespace vtr {
//Generate a secure hash of the file at filepath
std::string secure_digest_file(const std::string& filepath);
//Generate a secure hash of a stream
std::string secure_digest_stream(std::istream& is);
} // namespace vtr
#endif