Decrypt64 Function
Syntax
Decrypt64[$](Data [, Password]) -or- Decrypt64B(Data [, Password])
Group
Description
Returns a string using the RC4 stream decryption algorithm. Decrypt64B returns a Byte array.
Parameters
| Parameters | Description |
|---|---|
| Data | Returns this string's decryption. (The string is first decoded using base 64 decoding.) |
| Password | Decrypts using this password. |
See also
Sub Main Debug.Print Decrypt64("Y4GFrF+k1YUHwjEzsg==", "abc") '"Hello World!!" End Sub