_putstream() public method

public _putstream ( $s )
Beispiel #1
0
 function _putstream($s)
 {
     if ($this->encrypted) {
         $s = RC4($this->_objectkey($this->n), $s);
     }
     parent::_putstream($s);
 }