1
0
mirror of https://github.com/danog/phpseclib.git synced 2024-12-03 10:08:04 +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];
}
/**
* Is the continuous buffer enabled?
*
* @access public
* @return boolean
*/
function continuousBufferEnabled()
{
return $this->continuousBuffer;
}
}