BlockDecrypt
(System Library)
Description: | Decrypts a value that was encrypted using the BlockEncrypt function. |
Returns: | String |
Usage: | Script Only. |
Function Groups: | Encryption |
Related to: | BlockEncrypt |Decrypt | Hash |
Format: | System.BlockDecrypt(CipherValue, Key); |
Parameters: |
CipherValue |
Required. The string that was encrypted using the BlockEncrypt function |
Key |
Required string. The key value that was used for encryption. |
Comments: |
|
Examples:
DecodedResult = System.BlockDecrypt(SomeEncryptedValue, SameKey);