mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-12-26 11:37:33 +00:00
DES: apparently TripleDES extends DES
this was not always the case:
See c4752cbeba
This commit is contained in:
parent
baf65d3fef
commit
f91c4ccf60
@ -674,9 +674,11 @@ class Crypt_DES extends Crypt_Base
|
|||||||
*/
|
*/
|
||||||
function isValidEngine($engine)
|
function isValidEngine($engine)
|
||||||
{
|
{
|
||||||
if ($engine == CRYPT_ENGINE_OPENSSL) {
|
if ($this->key_size_max == 8) {
|
||||||
$this->cipher_name_openssl_ecb = 'des-ecb';
|
if ($engine == CRYPT_ENGINE_OPENSSL) {
|
||||||
$this->cipher_name_openssl = 'des-' . $this->_openssl_translate_mode();
|
$this->cipher_name_openssl_ecb = 'des-ecb';
|
||||||
|
$this->cipher_name_openssl = 'des-' . $this->_openssl_translate_mode();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return parent::isValidEngine($engine);
|
return parent::isValidEngine($engine);
|
||||||
|
Loading…
Reference in New Issue
Block a user