6 references to GetECDsaPublicKey
System.Security.Cryptography (2)
System\Security\Cryptography\X509Certificates\ECDsaCertificateExtensions.cs (1)
38
using (ECDsa? publicKey =
GetECDsaPublicKey
(certificate))
System\Security\Cryptography\X509Certificates\X509Certificate2.cs (1)
1045
using (ECDsa? ecdsa = certificate.
GetECDsaPublicKey
())
System.Security.Cryptography.Pkcs (3)
System\Security\Cryptography\Pkcs\CmsSignature.ECDsa.cs (3)
68
ECDsa? key = certificate.
GetECDsaPublicKey
();
125
certificate.
GetECDsaPublicKey
();
173
if (key != null && !certificate.
GetECDsaPublicKey
()!.VerifyHash(dataHash, signedHash))
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\Utils.cs (1)
762
AsymmetricAlgorithm? algorithm = (AsymmetricAlgorithm?)certificate.GetRSAPublicKey() ?? certificate.
GetECDsaPublicKey
();