[This is preliminary documentation and is subject to change.]

Encrypts a string

Namespace:  OfficeClip.Utils
Assembly:  OfficeClip.Utils (in OfficeClip.Utils)
Version: 8.1.1.0

Syntax

C#
public static string EncryptString(
	string input,
	string sKey
)
Visual Basic (Declaration)
Public Shared Function EncryptString ( _
	input As String, _
	sKey As String _
) As String
Visual C++
public:
static String^ EncryptString(
	String^ input, 
	String^ sKey
)

Parameters

input
Type: System..::.String
The input string to be encrypted.
sKey
Type: System..::.String
The secret key.

Return Value

The encrypted string.

See Also