| 307 | } |
| 308 | |
| 309 | void inbound_frame_processor::add_ciphertext_bytes(const uint8_t* data, size_t size) |
| 310 | { |
| 311 | ciphertext.resize(ciphertext.size() + size); |
| 312 | memcpy(ciphertext.data() + ciphertext.size() - size, data, size); |
| 313 | } |
| 314 | |
| 315 | void outbound_frame_processor::reset() |
| 316 | { |