/** * 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; } }