Module:Editor
Version:23.03 +
Description
The formula 'DecryptString' decrypt an encrypted string based on its encryption method. There are currently 3 available decryption methods: Rijndael, RSA and AES. By using the Rijndael and AES decryption, you must fill in 2 fields: password and salt for decryption. By using RSA decryption, you must fill in 3 fields: password, certificate reference and RSA padding. With the formula 'EncryptString' it is possible to encrypt the decrypted string.
Parameters
DecryptionMethod:
The decryption method. Currently available method are: Rijndael, RSA, AES.
String:
The string you want to decrypt.
Password:
The password for decryption. Required for Riujndeal and RSA.
Salt:
The salt for decryption. Required for Riujndeal.
Certificate:
A reference to a certificate. Required for RSA method. The certificate should be provided in the following format: {'FindValue':'MyCertificate','StoreName':'My','StoreLocation':'LocalMachine','X509FindType':'FindBySubjectName'}
Rsa Padding:
The rsa decryption padding. Required for RSA. By default, if empty, the padding will be "Pkcs1". For more information, see the link below to the Rsa padding documentation.