CipherDecryptFile Method

Creates a decrypted file from source file data.

Definition

Namespace: Gemstone.Security.Cryptography
Assembly: Gemstone.Security (in Gemstone.Security.dll) Version: 1.0.137 -- Release Build+074ed2672979376fdbab1e0a1f500a80b21869d0
public static void DecryptFile(
	string sourceFileName,
	string destinationFileName,
	string password,
	CipherStrength strength,
	Action<ProcessProgress<long>> progressHandler
)

Parameters

sourceFileName  String
Source file name.
destinationFileName  String
Destination file name.
password  String
User password used for key lookup.
strength  CipherStrength
Cryptographic strength to use when decrypting file.
progressHandler  ActionProcessProgressInt64
Optional delegate to handle progress updates for decrypting large files.

See Also