| 167 | } |
| 168 | |
| 169 | void 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 | |
| 175 | void CBC_Encryption::ProcessData(byte *outString, const byte *inString, size_t length) |
| 176 | { |
nothing calls this directly
no test coverage detected