3 overrides of VerifySignature
System.Security.Cryptography (3)
src\libraries\Common\src\System\Security\Cryptography\DSAOpenSsl.cs (1)
316
public override bool
VerifySignature
(ReadOnlySpan<byte> hash, ReadOnlySpan<byte> signature) =>
System\Security\Cryptography\DSACryptoServiceProvider.Unix.cs (1)
288
public override bool
VerifySignature
(ReadOnlySpan<byte> hash, ReadOnlySpan<byte> signature) =>
System\Security\Cryptography\DSAWrapper.cs (1)
65
public override bool
VerifySignature
(ReadOnlySpan<byte> hash, ReadOnlySpan<byte> signature) =>
5 references to VerifySignature
System.Security.Cryptography (3)
System\Security\Cryptography\DSA.cs (1)
875
return
VerifySignature
(hash, sig);
System\Security\Cryptography\DSACryptoServiceProvider.Unix.cs (1)
289
_impl.
VerifySignature
(hash, signature);
System\Security\Cryptography\DSAWrapper.cs (1)
66
_wrapped.
VerifySignature
(hash, signature);
System.Security.Cryptography.Pkcs (2)
System\Security\Cryptography\Pkcs\CmsSignature.DSA.cs (2)
93
return dsa.
VerifySignature
(valueHash, ieee);
159
if (key != null && !certificate.GetDSAPublicKey()!.
VerifySignature
(dataHash, signature))