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.

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

 

When overridden in a derived class, 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
) abstract

Parameters

rgbHash
Type: array<System::Byte>^

The hash of 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