Decryption of data

0
Hi Reader,   How can I decrypt the text data in mendix ?   Thanks and Regards, Harshraj Singh
asked
1 answers
0

It would depend on how you encrypted the text data.

If you used the standard Mendix Encryption module, then you would probably use the DecryptString Java Action in the Encryption / Private - String en/de-cryption folder.

In this case, the parameters would be 

  • value – the text you want to decrypt.
  • key – the key used to originally encrypt the text.
  • prefix – this would normally be the EncryptionPrefix constant.

https://docs.mendix.com/appstore/modules/encryption/

Hope this helps.​​​​​​​

answered