blob: 8d58f8d55e77dc78b692ca8c15a4efe34363ce2f [file] [log] [blame] [edit]
#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
#endif