Skip to content

rsa_public_decrypt()#


Decrypts data previously encrypted using the private key portion of an RSA keypair.

Syntax
rsa_public_decrypt( rsa, encrypted, plaintext var )

The rsa parameter must have been previously initialized using one of the rsa_load_publickey_xxx functions.

Returns#

Returns 1 on success, 0 on error.

Parameters#

Parameter Description
rsa The internal reference to the RSA public key used for decryption
encrypted The encrypted ciphertext, in raw binary format
plaintext A variable which receives the decrypted plaintext