C# 클래스 CodeCake.RijndaelCrypt

This is the same algorithm and configuration as https://github.com/appveyor/secure-file.
파일 보기 프로젝트 열기: SimpleGitVersion/CodeCake

공개 메소드들

메소드 설명
Decrypt ( string fileName, string outFileName, string secret ) : void

Decrypts a file into another file (that must not exist) with a given secret.

Encrypt ( string fileName, string outFileName, string secret ) : void

Encrypts a file into another file (that must not exist) with a given secret.

비공개 메소드들

메소드 설명
GetRijndael ( string secret ) : Rijndael

메소드 상세

Decrypt() 공개 정적인 메소드

Decrypts a file into another file (that must not exist) with a given secret.
public static Decrypt ( string fileName, string outFileName, string secret ) : void
fileName string File to decrypt.
outFileName string Target file that will be decrypted. Must not exist.
secret string Secret to use.
리턴 void

Encrypt() 공개 정적인 메소드

Encrypts a file into another file (that must not exist) with a given secret.
public static Encrypt ( string fileName, string outFileName, string secret ) : void
fileName string File to encrypt.
outFileName string Target file that will be encrypted. Must not exist.
secret string Secret to use.
리턴 void