VerifySignature()

DSACryptoServiceProvider::VerifySignature(ByteArrayPtr, ByteArrayPtr) method

Verify DSA signature for the specified data.

bool System::Security::Cryptography::DSACryptoServiceProvider::VerifySignature(ByteArrayPtr rgb_hash, ByteArrayPtr rgb_signature) override

Arguments

ParameterTypeDescription
rgb_hashByteArrayPtrData signed with rgb_signature.
rgb_signatureByteArrayPtrDSA signature.

Return Value

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

See Also