Data Protector

API

DataProtector / HashChecker API 레퍼런스

DataProtector

Encrypt

데이터를 압축한 뒤 암호화한 결과를 반환합니다.

byte[] DataProtector.Encrypt(byte[] data, string key);

Decrypt

데이터를 복호화한 뒤 압축을 해제한 결과를 반환합니다.

byte[] DataProtector.Decrypt(byte[] data, string key);

HashChecker

ComputeHash

암호화된 데이터의 해시 값을 추출합니다.

string HashChecker.ComputeHash(byte[] data);

ValidateHash

두 해시 값을 비교합니다.

bool HashChecker.ValidateHash(string hashA, string hashB);

목차