| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Pure-PHP implementation of Triple DES. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Uses mcrypt, if available, and an internal implementation, otherwise.  Operates in the EDE3 mode (encrypt-decrypt-encrypt). | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |  * PHP version 5 | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Here's a short example of how to use this library: | 
					
						
							|  |  |  |  * <code> | 
					
						
							|  |  |  |  * <?php | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |  *    include 'vendor/autoload.php'; | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |  *    $des = new \phpseclib\Crypt\TripleDES(); | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |  * | 
					
						
							|  |  |  |  *    $des->setKey('abcdefghijklmnopqrstuvwx'); | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *    $size = 10 * 1024; | 
					
						
							|  |  |  |  *    $plaintext = ''; | 
					
						
							|  |  |  |  *    for ($i = 0; $i < $size; $i++) { | 
					
						
							|  |  |  |  *        $plaintext.= 'a'; | 
					
						
							|  |  |  |  *    } | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *    echo $des->decrypt($des->encrypt($plaintext)); | 
					
						
							|  |  |  |  * ?>
 | 
					
						
							|  |  |  |  * </code> | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |  * @category  Crypt | 
					
						
							|  |  |  |  * @package   TripleDES | 
					
						
							|  |  |  |  * @author    Jim Wigginton <terrafrost@php.net> | 
					
						
							|  |  |  |  * @copyright 2007 Jim Wigginton | 
					
						
							|  |  |  |  * @license   http://www.opensource.org/licenses/mit-license.html  MIT License | 
					
						
							|  |  |  |  * @link      http://phpseclib.sourceforge.net | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  | namespace phpseclib\Crypt; | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Pure-PHP implementation of Triple DES. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |  * @package TripleDES | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |  * @author  Jim Wigginton <terrafrost@php.net> | 
					
						
							|  |  |  |  * @access  public | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  | class TripleDES extends DES | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * Encrypt / decrypt using inner chaining | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * Inner chaining is used by SSH-1 and is generally considered to be less secure then outer chaining (self::MODE_CBC3). | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |     const MODE_3CBC = -2; | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * Encrypt / decrypt using outer chaining | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * Outer chaining is used by SSH-2 and when the mode is set to \phpseclib\Crypt\Base::MODE_CBC. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     const MODE_CBC3 = Base::MODE_CBC; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Key Length (in bytes) | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @see \phpseclib\Crypt\TripleDES::setKeyLength() | 
					
						
							|  |  |  |      * @var int | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * @access private | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |     var $key_length = 24; | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * The default salt used by setPassword() | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * @see \phpseclib\Crypt\Base::password_default_salt | 
					
						
							|  |  |  |      * @see \phpseclib\Crypt\Base::setPassword() | 
					
						
							|  |  |  |      * @var string | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * @access private | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |     var $password_default_salt = 'phpseclib'; | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * The mcrypt specific name of the cipher | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * @see \phpseclib\Crypt\DES::cipher_name_mcrypt | 
					
						
							|  |  |  |      * @see \phpseclib\Crypt\Base::cipher_name_mcrypt | 
					
						
							|  |  |  |      * @var string | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * @access private | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     var $cipher_name_mcrypt = 'tripledes'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Optimizing value while CFB-encrypting | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * @see \phpseclib\Crypt\Base::cfb_init_len | 
					
						
							|  |  |  |      * @var int | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * @access private | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     var $cfb_init_len = 750; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * max possible size of $key | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * @see self::setKey() | 
					
						
							|  |  |  |      * @see \phpseclib\Crypt\DES::setKey() | 
					
						
							|  |  |  |      * @var string | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * @access private | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |     var $key_length_max = 24; | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * Internal flag whether using self::MODE_3CBC or not | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * @var bool | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * @access private | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     var $mode_3cbc; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * The \phpseclib\Crypt\DES objects | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * | 
					
						
							|  |  |  |      * Used only if $mode_3cbc === true | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * @var array | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * @access private | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     var $des; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Default Constructor. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * Determines whether or not the mcrypt or OpenSSL extensions should be used. | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * | 
					
						
							|  |  |  |      * $mode could be: | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * - \phpseclib\Crypt\Base::MODE_ECB | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * - \phpseclib\Crypt\Base::MODE_CBC | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * - \phpseclib\Crypt\Base::MODE_CTR | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * - \phpseclib\Crypt\Base::MODE_CFB | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * - \phpseclib\Crypt\Base::MODE_OFB | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * - \phpseclib\Crypt\TripleDES::MODE_3CB | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * @see \phpseclib\Crypt\DES::__construct() | 
					
						
							|  |  |  |      * @see \phpseclib\Crypt\Base::__construct() | 
					
						
							|  |  |  |      * @param int $mode | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * @access public | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |     function __construct($mode) | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |     { | 
					
						
							|  |  |  |         switch ($mode) { | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |             // In case of self::MODE_3CBC, we init as CRYPT_DES_MODE_CBC
 | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |             // and additional flag us internally as 3CBC
 | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |             case self::MODE_3CBC: | 
					
						
							|  |  |  |                 parent::__construct(Base::MODE_CBC); | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |                 $this->mode_3cbc = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // This three $des'es will do the 3CBC work (if $key > 64bits)
 | 
					
						
							|  |  |  |                 $this->des = array( | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |                     new DES(Base::MODE_CBC), | 
					
						
							|  |  |  |                     new DES(Base::MODE_CBC), | 
					
						
							|  |  |  |                     new DES(Base::MODE_CBC), | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |                 ); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |                 // we're going to be doing the padding, ourselves, so disable it in the \phpseclib\Crypt\DES objects
 | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |                 $this->des[0]->disablePadding(); | 
					
						
							|  |  |  |                 $this->des[1]->disablePadding(); | 
					
						
							|  |  |  |                 $this->des[2]->disablePadding(); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             // If not 3CBC, we init as usual
 | 
					
						
							|  |  |  |             default: | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |                 parent::__construct($mode); | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * Test for engine validity | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * This is mainly just a wrapper to set things up for \phpseclib\Crypt\Base::isValidEngine() | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * @see \phpseclib\Crypt\Base::__construct() | 
					
						
							|  |  |  |      * @param int $engine | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * @access public | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * @return bool | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function isValidEngine($engine) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if ($engine == self::ENGINE_OPENSSL) { | 
					
						
							|  |  |  |             $this->cipher_name_openssl_ecb = 'des-ede3'; | 
					
						
							|  |  |  |             $mode = $this->_openssl_translate_mode(); | 
					
						
							|  |  |  |             $this->cipher_name_openssl = $mode == 'ecb' ? 'des-ede3' : 'des-ede3-' . $mode; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return parent::isValidEngine($engine); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Sets the initialization vector. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * SetIV is not required when \phpseclib\Crypt\Base::MODE_ECB is being used. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @see \phpseclib\Crypt\Base::setIV() | 
					
						
							|  |  |  |      * @access public | 
					
						
							|  |  |  |      * @param string $iv | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      */ | 
					
						
							|  |  |  |     function setIV($iv) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         parent::setIV($iv); | 
					
						
							|  |  |  |         if ($this->mode_3cbc) { | 
					
						
							|  |  |  |             $this->des[0]->setIV($iv); | 
					
						
							|  |  |  |             $this->des[1]->setIV($iv); | 
					
						
							|  |  |  |             $this->des[2]->setIV($iv); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Sets the key length. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Valid key lengths are 128 and 192 bits. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * If you want to use a 64-bit key use DES.php | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @see \phpseclib\Crypt\Base:setKeyLength() | 
					
						
							|  |  |  |      * @access public | 
					
						
							|  |  |  |      * @throws \LengthException if the key length is invalid | 
					
						
							|  |  |  |      * @param int $length | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function setKeyLength($length) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         switch ($length) { | 
					
						
							|  |  |  |             case 128: | 
					
						
							|  |  |  |             case 192: | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             default: | 
					
						
							|  |  |  |                 throw new \LengthException('Key size of ' . $length . ' bits is not supported by this algorithm. Only keys of sizes 128 or 192 bits are supported'); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         parent::setKeyLength($length); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Sets the key. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * Triple DES can use 128-bit (eg. strlen($key) == 16) or 192-bit (eg. strlen($key) == 24) keys. | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * | 
					
						
							|  |  |  |      * DES also requires that every eighth bit be a parity bit, however, we'll ignore that. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @access public | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * @see \phpseclib\Crypt\DES::setKey() | 
					
						
							|  |  |  |      * @see \phpseclib\Crypt\Base::setKey() | 
					
						
							|  |  |  |      * @throws \LengthException if the key length is invalid | 
					
						
							|  |  |  |      * @param string $key | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      */ | 
					
						
							|  |  |  |     function setKey($key) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |         if ($this->explicit_key_length !== false && strlen($key) != $this->explicit_key_length) { | 
					
						
							|  |  |  |             throw new \LengthException('Key length has already been set to ' . $this->explicit_key_length . ' bytes and this key is ' . strlen($key) . ' bytes'); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         switch (strlen($key)) { | 
					
						
							|  |  |  |             case 16: | 
					
						
							|  |  |  |                 $key.= substr($key, 0, 8); | 
					
						
							|  |  |  |             case 24: | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             default: | 
					
						
							|  |  |  |                 throw new \LengthException('Key of size ' . strlen($key) . ' not supported by this algorithm. Only keys of sizes 16 or 24 are supported'); | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |         // copied from Base::setKey()
 | 
					
						
							|  |  |  |         $this->key = $key; | 
					
						
							|  |  |  |         $this->key_length = strlen($key); | 
					
						
							|  |  |  |         $this->changed = true; | 
					
						
							|  |  |  |         $this->_setEngine(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($this->mode_3cbc) { | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |             $this->des[0]->setKey(substr($key,  0, 8)); | 
					
						
							|  |  |  |             $this->des[1]->setKey(substr($key,  8, 8)); | 
					
						
							|  |  |  |             $this->des[2]->setKey(substr($key, 16, 8)); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Encrypts a message. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * @see \phpseclib\Crypt\Base::encrypt() | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * @access public | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * @param string $plaintext | 
					
						
							|  |  |  |      * @return string $cipertext | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      */ | 
					
						
							|  |  |  |     function encrypt($plaintext) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         // parent::en/decrypt() is able to do all the work for all modes and keylengths,
 | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |         // except for: self::MODE_3CBC (inner chaining CBC) with a key > 64bits
 | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // if the key is smaller then 8, do what we'd normally do
 | 
					
						
							|  |  |  |         if ($this->mode_3cbc && strlen($this->key) > 8) { | 
					
						
							|  |  |  |             return $this->des[2]->encrypt( | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |                 $this->des[1]->decrypt( | 
					
						
							|  |  |  |                     $this->des[0]->encrypt( | 
					
						
							|  |  |  |                         $this->_pad($plaintext) | 
					
						
							|  |  |  |                     ) | 
					
						
							|  |  |  |                 ) | 
					
						
							|  |  |  |             ); | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return parent::encrypt($plaintext); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Decrypts a message. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * @see \phpseclib\Crypt\Base::decrypt() | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * @access public | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * @param string $ciphertext | 
					
						
							|  |  |  |      * @return string $plaintext | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      */ | 
					
						
							|  |  |  |     function decrypt($ciphertext) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if ($this->mode_3cbc && strlen($this->key) > 8) { | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |             return $this->_unpad( | 
					
						
							|  |  |  |                 $this->des[0]->decrypt( | 
					
						
							|  |  |  |                     $this->des[1]->encrypt( | 
					
						
							|  |  |  |                         $this->des[2]->decrypt( | 
					
						
							|  |  |  |                             str_pad($ciphertext, (strlen($ciphertext) + 7) & 0xFFFFFFF8, "\0") | 
					
						
							|  |  |  |                         ) | 
					
						
							|  |  |  |                     ) | 
					
						
							|  |  |  |                 ) | 
					
						
							|  |  |  |             ); | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return parent::decrypt($ciphertext); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Treat consecutive "packets" as if they are a continuous buffer. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Say you have a 16-byte plaintext $plaintext.  Using the default behavior, the two following code snippets | 
					
						
							|  |  |  |      * will yield different outputs: | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * <code> | 
					
						
							|  |  |  |      *    echo $des->encrypt(substr($plaintext, 0, 8)); | 
					
						
							|  |  |  |      *    echo $des->encrypt(substr($plaintext, 8, 8)); | 
					
						
							|  |  |  |      * </code> | 
					
						
							|  |  |  |      * <code> | 
					
						
							|  |  |  |      *    echo $des->encrypt($plaintext); | 
					
						
							|  |  |  |      * </code> | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * The solution is to enable the continuous buffer.  Although this will resolve the above discrepancy, it creates | 
					
						
							|  |  |  |      * another, as demonstrated with the following: | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * <code> | 
					
						
							|  |  |  |      *    $des->encrypt(substr($plaintext, 0, 8)); | 
					
						
							|  |  |  |      *    echo $des->decrypt($des->encrypt(substr($plaintext, 8, 8))); | 
					
						
							|  |  |  |      * </code> | 
					
						
							|  |  |  |      * <code> | 
					
						
							|  |  |  |      *    echo $des->decrypt($des->encrypt(substr($plaintext, 8, 8))); | 
					
						
							|  |  |  |      * </code> | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * With the continuous buffer disabled, these would yield the same output.  With it enabled, they yield different | 
					
						
							|  |  |  |      * outputs.  The reason is due to the fact that the initialization vector's change after every encryption / | 
					
						
							|  |  |  |      * decryption round when the continuous buffer is enabled.  When it's disabled, they remain constant. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * Put another way, when the continuous buffer is enabled, the state of the \phpseclib\Crypt\DES() object changes after each | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * encryption / decryption round, whereas otherwise, it'd remain constant.  For this reason, it's recommended that | 
					
						
							|  |  |  |      * continuous buffers not be used.  They do offer better security and are, in fact, sometimes required (SSH uses them), | 
					
						
							|  |  |  |      * however, they are also less intuitive and more likely to cause you problems. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * @see \phpseclib\Crypt\Base::enableContinuousBuffer() | 
					
						
							|  |  |  |      * @see self::disableContinuousBuffer() | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * @access public | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function enableContinuousBuffer() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         parent::enableContinuousBuffer(); | 
					
						
							|  |  |  |         if ($this->mode_3cbc) { | 
					
						
							|  |  |  |             $this->des[0]->enableContinuousBuffer(); | 
					
						
							|  |  |  |             $this->des[1]->enableContinuousBuffer(); | 
					
						
							|  |  |  |             $this->des[2]->enableContinuousBuffer(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Treat consecutive packets as if they are a discontinuous buffer. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * The default behavior. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * @see \phpseclib\Crypt\Base::disableContinuousBuffer() | 
					
						
							|  |  |  |      * @see self::enableContinuousBuffer() | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * @access public | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function disableContinuousBuffer() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         parent::disableContinuousBuffer(); | 
					
						
							|  |  |  |         if ($this->mode_3cbc) { | 
					
						
							|  |  |  |             $this->des[0]->disableContinuousBuffer(); | 
					
						
							|  |  |  |             $this->des[1]->disableContinuousBuffer(); | 
					
						
							|  |  |  |             $this->des[2]->disableContinuousBuffer(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Creates the key schedule | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |      * @see \phpseclib\Crypt\DES::_setupKey() | 
					
						
							|  |  |  |      * @see \phpseclib\Crypt\Base::_setupKey() | 
					
						
							| 
									
										
										
										
											2013-10-05 00:16:07 +02:00
										 |  |  |      * @access private | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function _setupKey() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         switch (true) { | 
					
						
							|  |  |  |             // if $key <= 64bits we configure our internal pure-php cipher engine
 | 
					
						
							|  |  |  |             // to act as regular [1]DES, not as 3DES. mcrypt.so::tripledes does the same.
 | 
					
						
							|  |  |  |             case strlen($this->key) <= 8: | 
					
						
							|  |  |  |                 $this->des_rounds = 1; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             // otherwise, if $key > 64bits, we configure our engine to work as 3DES.
 | 
					
						
							|  |  |  |             default: | 
					
						
							|  |  |  |                 $this->des_rounds = 3; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 // (only) if 3CBC is used we have, of course, to setup the $des[0-2] keys also separately.
 | 
					
						
							|  |  |  |                 if ($this->mode_3cbc) { | 
					
						
							|  |  |  |                     $this->des[0]->_setupKey(); | 
					
						
							|  |  |  |                     $this->des[1]->_setupKey(); | 
					
						
							|  |  |  |                     $this->des[2]->_setupKey(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     // because $des[0-2] will, now, do all the work we can return here
 | 
					
						
							|  |  |  |                     // not need unnecessary stress parent::_setupKey() with our, now unused, $key.
 | 
					
						
							|  |  |  |                     return; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         // setup our key
 | 
					
						
							|  |  |  |         parent::_setupKey(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-17 22:44:12 +02:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Sets the internal crypt engine | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @see \phpseclib\Crypt\Base::__construct() | 
					
						
							|  |  |  |      * @see \phpseclib\Crypt\Base::setPreferredEngine() | 
					
						
							|  |  |  |      * @param int $engine | 
					
						
							|  |  |  |      * @access public | 
					
						
							|  |  |  |      * @return int | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function setPreferredEngine($engine) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if ($this->mode_3cbc) { | 
					
						
							|  |  |  |             $this->des[0]->setPreferredEngine($engine); | 
					
						
							|  |  |  |             $this->des[1]->setPreferredEngine($engine); | 
					
						
							|  |  |  |             $this->des[2]->setPreferredEngine($engine); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return parent::setPreferredEngine($engine); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |