diff -up Net_SSH2-1.0.19/SSH2.php.old Net_SSH2-1.0.19/SSH2.php --- Net_SSH2-1.0.19/SSH2.php.old 2020-07-08 11:32:38.947331135 +0200 +++ Net_SSH2-1.0.19/SSH2.php 2020-07-08 11:32:59.619256541 +0200 @@ -2059,12 +2059,12 @@ class Net_SSH2 return new Crypt_Rijndael(CRYPT_RIJNDAEL_MODE_CTR); case 'blowfish-cbc': if (!class_exists('Crypt_Blowfish')) { - include_once 'Crypt/Blowfish.php'; + include_once 'Crypt/Blowfish-phpseclib.php'; } return new Crypt_Blowfish(); case 'blowfish-ctr': if (!class_exists('Crypt_Blowfish')) { - include_once 'Crypt/Blowfish.php'; + include_once 'Crypt/Blowfish-phpseclib.php'; } return new Crypt_Blowfish(CRYPT_BLOWFISH_MODE_CTR); case 'twofish128-cbc':