public abstract boolVerifySignature (byte[] rgbHash, byte[] rgbSignature)
Parameters
rgbHash
The hash of the data signed with rgbSignature.
rgbSignature
The signature to be verified for rgbData.
Returns
true if rgbSignature matches the signature computed using the specified hash algorithm and key on rgbHash; otherwise, false.
Remarks
A System.Security.Cryptography.CryptographicException will be thrown if the parameter rgbHash isn't exactly 20 bytes long (like all SHA1 hashes are) or if the signature length isn't 40 bytes long (as all DSA signatures are).