blob: 820ffbf94dc5761c5e796841393951fe471d17c0 [file] [log] [blame]
#include "hash_handler.hpp"
#include <cstdint>
#include <memory>
#include <string>
#include <vector>
namespace blobs
{
bool HashFileHandler::open(const std::string& path)
{
this->path = path;
return false;
}
void HashFileHandler::close()
{
return;
}
bool HashFileHandler::write(std::uint32_t offset,
const std::vector<std::uint8_t>& data)
{
return false;
}
} // namespace blobs