Click or drag to resize

AesDecrypt Method (SecureString, Byte)

Descrypts encrypted data

Namespace:  Cauldron.Cryptography
Assembly:  Cauldron.Cryptography (in Cauldron.Cryptography.dll) Version: 3.2.0.1 (3.2.0.1)
Syntax
C#
public static byte[] Decrypt(
	SecureString password,
	byte[] data
)

Parameters

password
Type: System.SecuritySecureString
The password used to decrypt data
data
Type: SystemByte
The data to decrypt

Return Value

Type: Byte
The decrypted data
Exceptions
ExceptionCondition
ArgumentNullExceptionpassword is null
ArgumentNullExceptiondata is null
See Also