DES decrypt cipher of length sz into plain
| 398 | |
| 399 | // DES decrypt cipher of length sz into plain |
| 400 | void DES::decrypt(byte* plain, const byte* cipher, unsigned int sz) |
| 401 | { |
| 402 | pimpl_->decryption.Process(plain, cipher, sz); |
| 403 | } |
| 404 | |
| 405 | |
| 406 | struct DES_EDE::DES_EDEImpl { |
no test coverage detected