BE_CipherDecrypt
BE_CipherDecrypt ( cipher ; encryptedData ; key ; iv {; padding ; fileNameWithExtension } )
Decrypt encryptedData using cipher.
Version : 4.0
Parameters :
- cipher : The cipher name to use. If the value is empty, "AES-256-CBC" will be used.
- encryptedData : The data to decrypt. It can be HEX encoded text or container field.
- key : The key to decrypt with. It can be HEX encoded text or container field.
- iv : The IV (initialization vector). It can be HEX encoded text or container field.
- padding (optional) : Set
false
to disable padding. Padding is enabled if the parameter istrue
, empty or not specified. - fileNameWithExtension (optional) : The filename and extension for the decrypted data.
Result : Container content if fileNameWithExtension is specified. Otherwise, HEX encoded text.