DSAOpenSsl.VerifySignature(Byte[], Byte[]) Method   
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Verifies if the specified digital signature matches the specified hash.
public:
 override bool VerifySignature(cli::array <System::Byte> ^ rgbHash, cli::array <System::Byte> ^ rgbSignature);public override bool VerifySignature(byte[] rgbHash, byte[] rgbSignature);override this.VerifySignature : byte[] * byte[] -> boolPublic Overrides Function VerifySignature (rgbHash As Byte(), rgbSignature As Byte()) As BooleanParameters
- rgbHash
- Byte[]
- rgbSignature
- Byte[]
Returns
true if rgbSignature matches the signature computed using the specified hash; otherwise, false.
Exceptions
rgbHash or rgbSignature is null.