Click or drag to resize

CipherDecryptFile Method

Creates a decrypted file from source file data.

Namespace: GSF.Security.Cryptography
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.205-beta+5ef4169f3b1079d8b163dd363614f656bd140924
Syntax
public static void DecryptFile(
	string sourceFileName,
	string destinationFileName,
	string password,
	CipherStrength strength,
	Action<ProcessProgress<long>> progressHandler
)
View Source

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