| 147 | } |
| 148 | |
| 149 | void ECB_OneWay::ProcessData(byte *outString, const byte *inString, size_t length) |
| 150 | { |
| 151 | assert(length%BlockSize()==0); |
| 152 | m_cipher->AdvancedProcessBlocks(inString, NULL, outString, length, BlockTransformation::BT_AllowParallel); |
| 153 | } |
| 154 | |
| 155 | void CBC_Encryption::ProcessData(byte *outString, const byte *inString, size_t length) |
| 156 | { |
nothing calls this directly
no test coverage detected