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

Decrypts a previously encrypted string. It should be noted that this string will need to be encrypted with the same default key for the decrypted key to make sense.

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

Syntax

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

Parameters

input
Type: System..::.String
The input string.

Return Value

The decrypted string.

See Also