17 lines
549 B
C
Raw Normal View History

2018-06-19 16:59:27 -07:00
#pragma once
#include <vcpkg/base/files.h>
namespace vcpkg::Downloads
{
void verify_downloaded_file_hash(const Files::Filesystem& fs,
const std::string& url,
const fs::path& path,
const std::string& sha512);
void download_file(vcpkg::Files::Filesystem& fs,
const std::string& url,
const fs::path& download_path,
const std::string& sha512);
}