Decrypts the base64-encoded encrypted data using DES crypto provider service.

Namespace: MonoSoftware.Core.Cryptography
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public static byte[] Decrypt(
	string key,
	byte[] data
)
Visual Basic
Public Shared Function Decrypt ( 
	key As String,
	data As Byte()
) As Byte()
Visual C++
public:
static array<unsigned char>^ Decrypt(
	String^ key, 
	array<unsigned char>^ data
)
F#
static member Decrypt : 
        key : string * 
        data : byte[] -> byte[] 

Parameters

key
Type: System..::..String
data
Type: array<System..::..Byte>[]()[][]
Encrypted data

Return Value

Type: array<Byte>[]()[][]
Decrypted data

See Also