Decrypt

The Decrypt function card decrypts input text from a Base64 encoding using a key and specified encryption algorithm.

Input

Field Definition Type Required
algorithm Select the encryption algorithm to use:
  • aes-128-cbc

  • aes-128-ecb

  • aes-256-cbc

  • aes-256-ecb

  • des-cbc

  • des-ecb

Dropdown FALSE
key Text string to use as the decryption key. The must be the same key, along with the specific algorithm, used to encrypt the text. String TRUE
data Encoded text string to decrypt. String TRUE

Output

Field Definition Type
output Decrypted text of your input data. String

Example

Input

  • algorithm: aes-256-cbc

  • key: my secret key

  • data: hrDDPCtB0Cijc8EFAHhABiYEKdYBgt+e63RGV288SOI=

Output

My secret message!

This is the inverse of the example provided for the Encrypt card.