Decrypt64 Function
Syntax
Decrypt64[$](Data [, Password])
-or-
Group
Description
Return a string using the RC4 stream decryption algorithm.
Decrypt64B returns a Byte array.
Parameters |
Description |
Return this string's decryption. (The string is first decoded using base 64 decoding.) |
|
Decrypt using this password. If omitted, use one of a user's two public/private key pairs. Use KeyExchange if available, otherwise use Signature. If neither is available a run-time error occurs. |
See Also
Decode64[B], Encode64[B], Encrypt64[B]
Example
Sub Main
Debug.Print Decrypt64("Y4GFrF+k1YUHwjEzsg==", "abc") '"Hello World!!"
End Sub