DES encrypt plain of length sz into cipher
| 391 | |
| 392 | // DES encrypt plain of length sz into cipher |
| 393 | void DES::encrypt(byte* cipher, const byte* plain, unsigned int sz) |
| 394 | { |
| 395 | pimpl_->encryption.Process(cipher, plain, sz); |
| 396 | } |
| 397 | |
| 398 | |
| 399 | // DES decrypt cipher of length sz into plain |
no test coverage detected