| 150 | |
| 151 | |
| 152 | void octetStream::store_bytes(octet* x, const size_t l) |
| 153 | { |
| 154 | encode_length(append(4), l, 4); |
| 155 | memcpy(append(l), x, l*sizeof(octet)); |
| 156 | } |
| 157 | |
| 158 | void octetStream::get_bytes(octet* ans, size_t& length) |
| 159 | { |
no test coverage detected