| 215 | } |
| 216 | |
| 217 | uint64_t WriteBytes(std::streambuf& buffer, uint64_t nof_bytes) { |
| 218 | const std::vector<uint8_t> empty_array(static_cast<size_t>(nof_bytes), 0); |
| 219 | return WriteByte(buffer, empty_array); |
| 220 | } |
| 221 | |
| 222 | uint64_t ReadStr(std::streambuf& buffer, std::string &dest, uint64_t size) { |
| 223 | std::ostringstream temp; |