Click or drag to resize

CipherEncryptFile Method

Creates an encrypted file from source file data.

Namespace: GSF.Security.Cryptography
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.232-beta+203aa83a5a82d50f387e69875549969ad138d6e0
Syntax
public static void EncryptFile(
	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 encrypting file.
progressHandler  ActionProcessProgressInt64
Optional delegate to handle progress updates for encrypting large files.
See Also