본문으로 건너뛰기

Decrypt

Overloads

NameDescription
Decrypt(string source, string target, string password)암호화된 데이터를 해제 후 파일로 저장
Decrypt(string file, string password)암호화된 데이터를 해제
Decrypt(Byte[] data, string password)암호화된 데이터를 해제

Decrypt(string source, string target, string password)

public bool Decrypt(string source, string target, string password)

암호화된 데이터를 해제 후 파일로 저장

Parameters

NameTypeDescription
sourcestring암호화된 파일
targetstring해제된 파일 저장 경로
passwordstring패스워드

Returns

TypeDescription
bool처리 결과

Decrypt(string file, string password)

public Byte[] Decrypt(string file, string password)

암호화된 데이터를 해제

Parameters

NameTypeDescription
filestring암호화된 파일
passwordstring복호화 해제 암호

Returns

TypeDescription
Byte[]복호화된 바이트 배열

Decrypt(Byte[] data, string password)

public Byte[] Decrypt(Byte[] data, string password)

암호화된 데이터를 해제

Parameters

NameTypeDescription
dataByte[]암호화된 바이트 배열
passwordstring복호화 해제 암호

Returns

TypeDescription
Byte[]복호화된 바이트 배열