Decrypts Base64-encoded text with the specified key and returns text or container data.
CryptDecryptBase64(text;key)
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
.
text, container
FileMaker Pro 16.0
This function works the same as the CryptDecrypt function, except that it accepts Base64-encoded text returned by the CryptEncryptBase64 function.
•This function is not supported in runtime solutions and returns "?".
Returns This needs protection, the text that was encrypted using CryptEncryptBase64 with the same key.
CryptDecryptBase64 (
CryptEncryptBase64 ( "This needs protection" ; "My secret password" ) ;
"My secret password"
)