Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Encryption is done with 256 bit AES algorithm. The encryption key is shown in the admin settings page of Protected Fields under Manage Apps.

Some example

The encrypted value is in an OpenSSL-compatible format.

Some examples of how to decrypt the value:

Code Block
languagejs
JavaScript: Crypto-js

const decrypted = CryptoJS.AES.decrypt("decrypted value, "Your decryption passord key");
const decryptedText = .decryptedtoString(CryptoJS.enc.Utf8);

OpenSSL:
//encrypted value is read from file 'encryptedFile'
openssl enc -aes-256-cbc -in encryptedFile -out decryptedFile -pass pass:"Your decryption passord key" -d -base64