phpseclib\Crypt\RC4::decrypt PHP Метод

decrypt() публичный Метод

$this->decrypt($this->encrypt($plaintext)) == $this->encrypt($this->encrypt($plaintext)). At least if the continuous buffer is disabled.
См. также: phpseclib\Crypt\Common\SymmetricKey::encrypt()
См. также: self::_crypt()
public decrypt ( string $ciphertext ) : string
$ciphertext string
Результат string $plaintext
    function decrypt($ciphertext)
    {
        if ($this->engine != self::ENGINE_INTERNAL) {
            return parent::decrypt($ciphertext);
        }
        return $this->_crypt($ciphertext, self::DECRYPT);
    }