rsa_decrypt
Decrypt RSA ciphertext with your private key. Provide a PEM private key and base64-encoded ciphertext to retrieve the original data.
Instructions
Decrypt RSA ciphertext using private key.
Args: private_key_pem: RSA private key in PEM format. ciphertext: Base64-encoded ciphertext.
Returns: Decrypted string.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ciphertext | Yes | ||
| private_key_pem | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |