blob: 64cf3453d2e91fc0c957ba05280b7b1a925e7455 [file] [log] [blame]
#ifndef VTR_DIGEST_H
#define VTR_DIGEST_H
#include <iosfwd>
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
#endif