blob: 820ffbf94dc5761c5e796841393951fe471d17c0 [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
Patrick Venture68bb1432018-11-09 20:08:48 -080017void HashFileHandler::close()
18{
19 return;
20}
21
Patrick Venturee2e56112018-11-08 09:42:45 -080022bool HashFileHandler::write(std::uint32_t offset,
23 const std::vector<std::uint8_t>& data)
24{
25 return false;
26}
27
28} // namespace blobs