2 overrides of VerifySignature
System.Security.Cryptography (2)
System\Security\Cryptography\DSASignatureDeformatter.cs (1)
35
public override bool
VerifySignature
(byte[] rgbHash, byte[] rgbSignature)
System\Security\Cryptography\RSAPKCS1SignatureDeformatter.cs (1)
45
public override bool
VerifySignature
(byte[] rgbHash, byte[] rgbSignature)
2 references to VerifySignature
System.Security.Cryptography (1)
System\Security\Cryptography\AsymmetricSignatureDeformatter.cs (1)
21
return
VerifySignature
(hash.Hash, rgbSignature);
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\SignedXml.cs (1)
1051
return asymmetricSignatureDeformatter.
VerifySignature
(hashval, m_signature.SignatureValue!);