Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DSACryptoServiceProvider::VerifySignature Method (array<Byte>^, array<Byte>^)

 

Verifies the DSA signature for the specified data.

Namespace:   System.Security.Cryptography
Assembly:  mscorlib (in mscorlib.dll)

public:
virtual bool VerifySignature(
	array<unsigned char>^ rgbHash,
	array<unsigned char>^ rgbSignature
) override

Parameters

rgbHash
Type: array<System::Byte>^

The data signed with rgbSignature.

rgbSignature
Type: array<System::Byte>^

The signature to be verified for rgbData.

Return Value

Type: System::Boolean

true if rgbSignature matches the signature computed using the specified hash algorithm and key on rgbHash; otherwise, false.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft