Encrypt64 Function

Syntax:

Encrypt64[$](Data[,Password])

Group:

Miscellaneous

Description:

Return a string using the RC4 stream encryption algorithm. (The string is also encoded using base 64 encoding.)

Parameters:

Parameter

Description

Data

Return this string's encryption.

Password

Encrypt using this password.

Example:

Sub Main
  Debug.Print Encrypt64("Hello World!!", "abc") '"Y4GFrF+k1YUHwjEzsg=="
End
Sub

See Also:

Decode64, Decrypt64, Encode64