Programming Reference Manual
 
Syntax
 
Decrypt64[$](Data [,Password])
 
Description
Return a string using the RC4 stream decryption algorithm.
 
Parameter
Description
Data
Return this string's decryption. (The string is first decoded using base 64 decoding.)
Password
Decrypt using this password.
See Also
Example
 
Sub Main
    Debug.Print Decrypt64("Y4GFrF+k1YUHwjEzsg==", "abc") '"Hello World!!"
End Sub