MCPcopy Create free account
hub / github.com/brainboxdotcc/DPP / add_ciphertext_bytes

Method add_ciphertext_bytes

src/dpp/dave/frame_processors.cpp:309–313  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

307}
308
309void 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
315void outbound_frame_processor::reset()
316{

Callers

nothing calls this directly

Calls 3

resizeMethod · 0.80
sizeMethod · 0.45
dataMethod · 0.45

Tested by

no test coverage detected