IniRijndaelEncryption.DecryptToString Method

TG.INI

IniRijndaelEncryptionDecryptToString Method

Decrypts byte array to a Unicode string.

Namespace:  TG.INI.Encryption
Assembly:  TG.INI (in TG.INI.dll) Version: 1.2.2.0 (1.2.2.0)
Syntax
public string DecryptToString(
	byte[] bytes
)
Public Function DecryptToString ( 
	bytes As Byte()
) As String
public:
virtual String^ DecryptToString(
	array<unsigned char>^ bytes
) sealed
abstract DecryptToString : 
        bytes : byte[] -> string 
override DecryptToString : 
        bytes : byte[] -> string 

Parameters

bytes
Type: SystemByte
The byte data to decrypt.

Return Value

Type: String
Unencrypted string.

Implements

IEncryptionHandlerDecryptToString(Byte)
See Also