System::Security::Cryptography::DSACryptoServiceProvider::VerifyData 메서드

DSACryptoServiceProvider::VerifyData(const ByteArrayPtr&, const ByteArrayPtr&) method

데이터 서명을 검사합니다.

bool System::Security::Cryptography::DSACryptoServiceProvider::VerifyData(const ByteArrayPtr &buffer, const ByteArrayPtr &signature)
매개변수형식설명
bufferconst ByteArrayPtr&Data 의 서명을 확인합니다.
signatureconst ByteArrayPtr&수신된 서명.

ReturnValue

서명이 유효하면 true, 그렇지 않으면 false.

또 보기

DSACryptoServiceProvider::VerifyData(const ByteArrayPtr&, const ByteArrayPtr&, const HashAlgorithmName&) method

지정된 데이터의 서명이 유효한지 확인합니다.

bool System::Security::Cryptography::DSA::VerifyData(const ByteArrayPtr &data, const ByteArrayPtr &signature, const HashAlgorithmName &hash_algorithm)
매개변수형식설명
데이터const ByteArrayPtr&서명된 데이터.
signatureconst ByteArrayPtr&서명 데이터.
hash_algorithmconst HashAlgorithmName&해시 알고리즘. 서명이 유효하면 true를 반환하고, 그렇지 않으면 false를 반환합니다.

또 보기

DSACryptoServiceProvider::VerifyData(const ByteArrayPtr&, int32_t, int32_t, const ByteArrayPtr&, const HashAlgorithmName&) method

지정된 데이터의 서명이 유효한지 확인합니다.

bool System::Security::Cryptography::DSA::VerifyData(const ByteArrayPtr &data, int32_t offset, int32_t count, const ByteArrayPtr &signature, const HashAlgorithmName &hash_algorithm)
매개변수형식설명
데이터const ByteArrayPtr&서명된 데이터.
offsetint32_tdata의 오프셋.
countint32_t해시할 바이트 수.
signatureconst ByteArrayPtr&서명 데이터.
hash_algorithmconst HashAlgorithmName&해시 알고리즘. 서명이 유효하면 true를 반환하고, 그렇지 않으면 false를 반환합니다.

또 보기

DSACryptoServiceProvider::VerifyData(const StreamPtr&, const ByteArrayPtr&, const HashAlgorithmName&) method

지정된 바이너리 스트림의 서명이 유효한지 확인합니다.

bool System::Security::Cryptography::DSA::VerifyData(const StreamPtr &stream, const ByteArrayPtr &signature, const HashAlgorithmName &hash_algorithm)
매개변수형식설명
스트림const StreamPtr&서명된 데이터.
signatureconst ByteArrayPtr&서명 데이터.
hash_algorithmconst HashAlgorithmName&해시 알고리즘. 서명이 유효하면 true를 반환하고, 그렇지 않으면 false를 반환합니다.

또 보기