4 overrides of VerifyKeyType
System.Security.Cryptography.Pkcs (4)
System\Security\Cryptography\Pkcs\CmsSignature.DSA.cs (1)
39
protected override bool
VerifyKeyType
(object key) => key is DSA;
System\Security\Cryptography\Pkcs\CmsSignature.ECDsa.cs (1)
41
protected override bool
VerifyKeyType
(object key) => key is ECDsa;
System\Security\Cryptography\Pkcs\CmsSignature.RSA.cs (1)
42
protected override bool
VerifyKeyType
(object key) => key is RSA;
System\Security\Cryptography\Pkcs\CmsSignature.SlhDsa.cs (1)
39
protected override bool
VerifyKeyType
(object key) => key is SlhDsa;
1 reference to VerifyKeyType
System.Security.Cryptography.Pkcs (1)
System\Security\Cryptography\Pkcs\CmsSignature.cs (1)
105
if (key != null && !processor.
VerifyKeyType
(key))