Encrypt64 Function
Syntax
Encrypt64[$](Data [, Password])
Group
Description
Returns a string using the RC4 stream encryption algorithm (the string is also encoded using base 64 encoding).
Parameters
| Parameters | Description |
|---|---|
| Data | Returns the encryption for this string. |
| Password | Encrypts using this password. |
See also
Sub Main Debug.Print Encrypt64("Hello World!!", "abc") '"Y4GFrF+k1YUHwjEzsg==" End Sub