Decrypt
Overloads
| Name | Description |
|---|---|
| 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
| Name | Type | Description |
|---|---|---|
| source | string | 암호화된 파일 |
| target | string | 해제된 파일 저장 경로 |
| password | string | 패스워드 |
Returns
| Type | Description |
|---|---|
| bool | 처리 결과 |
Decrypt(string file, string password)
public Byte[] Decrypt(string file, string password)
암호화된 데이터를 해제
Parameters
| Name | Type | Description |
|---|---|---|
| file | string | 암호화된 파일 |
| password | string | 복호화 해제 암호 |
Returns
| Type | Description |
|---|---|
| Byte[] | 복호화된 바이트 배열 |
Decrypt(Byte[] data, string password)
public Byte[] Decrypt(Byte[] data, string password)
암호화된 데이터를 해제
Parameters
| Name | Type | Description |
|---|---|---|
| data | Byte[] | 암호화된 바이트 배열 |
| password | string | 복호화 해제 암호 |
Returns
| Type | Description |
|---|---|
| Byte[] | 복호화된 바이트 배열 |