blob: ce9208b04b6da25f02df8ca4c57d0cdf7df10ff0 [file] [log] [blame]
Patrick Venturee2e56112018-11-08 09:42:45 -08001#include "hash_handler.hpp"
2
3#include <cstdint>
4#include <memory>
5#include <string>
6#include <vector>
7
8namespace blobs
9{
10
11bool HashFileHandler::open(const std::string& path)
12{
13 this->path = path;
14 return false;
15}
16
17bool HashFileHandler::write(std::uint32_t offset,
18 const std::vector<std::uint8_t>& data)
19{
20 return false;
21}
22
23} // namespace blobs