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);
    }