| 385 | |
| 386 | |
| 387 | void DES::set_decryptKey(const byte* k, const byte* iv) |
| 388 | { |
| 389 | pimpl_->decryption.SetKey(k, DES_KEY_SZ, iv); |
| 390 | } |
| 391 | |
| 392 | // DES encrypt plain of length sz into cipher |
| 393 | void DES::encrypt(byte* cipher, const byte* plain, unsigned int sz) |
no test coverage detected