MCPcopy Create free account
hub / github.com/LUX-Core/lux / ProcessData

Method ProcessData

src/cryptopp/modes.cpp:169–173  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167}
168
169void ECB_OneWay::ProcessData(byte *outString, const byte *inString, size_t length)
170{
171 CRYPTOPP_ASSERT(length%BlockSize()==0);
172 m_cipher->AdvancedProcessBlocks(inString, NULL, outString, length, BlockTransformation::BT_AllowParallel);
173}
174
175void CBC_Encryption::ProcessData(byte *outString, const byte *inString, size_t length)
176{

Callers

nothing calls this directly

Calls 5

memcpyFunction · 0.85
AdvancedProcessBlocksMethod · 0.80
BlockSizeFunction · 0.70
ProcessAndXorBlockMethod · 0.45
swapMethod · 0.45

Tested by

no test coverage detected