CryptDecryptBase64
Decrypts Base64-encoded text with the specified key and returns text or container data.
Format
CryptDecryptBase64 ( text ; key )
Parameters
text - any text expression or text field that contains data returned by the CryptEncryptBase64 function.
key
- any expression or field that contains the same key that was used to encrypt text
.
Data type returned
text, container
Originated in version
16.0
Description
This function works the same as the CryptDecrypt function, except that it accepts Base64-encoded text returned by the CryptEncryptBase64 function.
Example 1
Returns This needs protection, the text that was encrypted using CryptEncryptBase64 with the same key.
Copy
CryptDecryptBase64 (
CryptEncryptBase64 ( "This needs protection" ; "My secret password" ) ;
"My secret password"
)