示例#1
0
文件: AES.php 项目: pradhmanyu/ost
 /**
  * Treat consecutive "packets" as if they are a continuous buffer.
  *
  * The default behavior.
  *
  * @see Crypt_Rijndael::disableContinuousBuffer()
  * @access public
  */
 function enableContinuousBuffer()
 {
     parent::enableContinuousBuffer();
     if (CRYPT_AES_MODE == CRYPT_AES_MODE_MCRYPT) {
         $this->enbuffer['enmcrypt_init'] = true;
         $this->debuffer['demcrypt_init'] = true;
     }
 }