Syntax
RSA_DECRYPT(encrypted_message, key, [padding: "PKCS1_PADDING"])
Usage examples
Example 1
Formula | RSA_DECRYPT(encrypted_data, key) |
Output | "Decrypted message" |
Example 2
Formula | RSA_DECRYPT(encrypted_data, key, padding: "PKCS1_PADDING") |
Output | "Decrypted data" |