System::Security::Cryptography::DSACryptoServiceProvider::VerifySignature method

DSACryptoServiceProvider::VerifySignature method

Verify DSA signature for the specified data.

bool System::Security::Cryptography::DSACryptoServiceProvider::VerifySignature(ByteArrayPtr rgb_hash, ByteArrayPtr rgb_signature) override
ParameterTypeDescription
rgb_hashByteArrayPtrData signed with rgb_signature.
rgb_signatureByteArrayPtrDSA signature.

ReturnValue

true - if rgb_signature matches the DSA signature computed on rgb_hash, otherwise - false.

See Also