C# 클래스 SSIS.Extensions.PGPTask.PGPManager

파일 보기 프로젝트 열기: ElanHasson/SSIS-Extensions 1 사용 예제들

공개 메소드들

메소드 설명
Decrypt ( string inputFile, string privateKeyFile, string passPhrase, string outputFile, bool overwriteTarget, bool removeSource ) : void

Decrypts the specified input file.

Encrypt ( string inputFile, string publicKeyFile, string outputFile, bool overwriteTarget, bool removeSource, bool armor ) : void

Encrypts the specified input file.

EncryptAndSign ( string inputFile, string publicKeyFile, string privateKeyFile, string passPhrase, string outputFile, bool overwriteTarget, bool removeSource, bool armor ) : void

Encrypts the and sign.

메소드 상세

Decrypt() 공개 정적인 메소드

Decrypts the specified input file.
public static Decrypt ( string inputFile, string privateKeyFile, string passPhrase, string outputFile, bool overwriteTarget, bool removeSource ) : void
inputFile string The input file.
privateKeyFile string The private key file.
passPhrase string The pass phrase.
outputFile string The output file.
overwriteTarget bool if set to true [overwrite target].
removeSource bool if set to true [remove source].
리턴 void

Encrypt() 공개 정적인 메소드

Encrypts the specified input file.
public static Encrypt ( string inputFile, string publicKeyFile, string outputFile, bool overwriteTarget, bool removeSource, bool armor ) : void
inputFile string The input file.
publicKeyFile string The public key file.
outputFile string The output file.
overwriteTarget bool if set to true [overwrite target].
removeSource bool if set to true [remove source].
armor bool if set to true [armor].
리턴 void

EncryptAndSign() 공개 정적인 메소드

Encrypts the and sign.
public static EncryptAndSign ( string inputFile, string publicKeyFile, string privateKeyFile, string passPhrase, string outputFile, bool overwriteTarget, bool removeSource, bool armor ) : void
inputFile string The input file.
publicKeyFile string The public key file.
privateKeyFile string The private key file.
passPhrase string The pass phrase.
outputFile string The output file.
overwriteTarget bool if set to true [overwrite target].
removeSource bool if set to true [remove source].
armor bool if set to true [armor].
리턴 void