Neos\Flow\Security\Cryptography\RsaWalletServiceInterface::decrypt PHP Method

decrypt() public method

Decrypts the given cypher with the private key identified by the given fingerprint Note: You should never decrypt a password with this function. Use checkRSAEncryptedPassword() to check passwords!
public decrypt ( string $cypher, string $fingerprint ) : string
$cypher string Cypher text to decrypt
$fingerprint string The fingerprint to identify to correct private key
return string The decrypted text
    public function decrypt($cypher, $fingerprint);