1
0
mirror of https://github.com/danog/phpseclib.git synced 2024-12-04 10:38:12 +01:00

Merge branch '2.0' into 3.0

This commit is contained in:
terrafrost 2022-12-07 08:37:25 -06:00
commit d186a9d20d

View File

@ -3383,4 +3383,15 @@ abstract class SymmetricKey
{ {
return array_flip(self::MODE_MAP)[$this->mode]; return array_flip(self::MODE_MAP)[$this->mode];
} }
/**
* Is the continuous buffer enabled?
*
* @access public
* @return boolean
*/
function continuousBufferEnabled()
{
return $this->continuousBuffer;
}
} }