diff --git a/phpseclib/Crypt/Base.php b/phpseclib/Crypt/Base.php index 83cab630..1336d0ef 100644 --- a/phpseclib/Crypt/Base.php +++ b/phpseclib/Crypt/Base.php @@ -2744,4 +2744,15 @@ class Crypt_Base function do_nothing() { } + + /** + * Is the continuous buffer enabled? + * + * @access public + * @return boolean + */ + function continuousBufferEnabled() + { + return $this->continuousBuffer; + } }