7 instantiations of ECDsaOpenSsl
System.Security.Cryptography (7)
System\Security\Cryptography\ECDsa.Create.OpenSsl.cs (3)
13return new ECDsaWrapper(new ECDsaOpenSsl()); 24return new ECDsaWrapper(new ECDsaOpenSsl(curve)); 35var ec = new ECDsaOpenSsl();
System\Security\Cryptography\X509Certificates\OpenSslExportProvider.cs (1)
40alg = new ECDsaOpenSsl(privateKey!);
System\Security\Cryptography\X509Certificates\OpenSslX509CertificateReader.cs (3)
576return new ECDsaOpenSsl(publicKeyHandle); 597return new ECDsaOpenSsl(_privateKey); 651using (typedKey = new ECDsaOpenSsl())
7 references to ECDsaOpenSsl
System.Net.Security (2)
System\Net\Security\SslStreamCertificateContext.Linux.cs (2)
72using (ECDsaOpenSsl? ecdsa = (ECDsaOpenSsl?)target.GetECDsaPrivateKey())
System.Security.Cryptography (4)
System\Security\Cryptography\ECDsa.Create.OpenSsl.cs (1)
35var ec = new ECDsaOpenSsl();
System\Security\Cryptography\ECDsaOpenSsl.cs (1)
105throw new PlatformNotSupportedException(SR.Format(SR.PlatformNotSupported_CryptographyOpenSSLNotFound, nameof(ECDsaOpenSsl)));
System\Security\Cryptography\X509Certificates\OpenSslX509CertificateReader.cs (2)
641ECDsaOpenSsl? typedKey = privateKey as ECDsaOpenSsl;
System.Security.Cryptography.OpenSsl (1)
System.Security.Cryptography.OpenSsl.cs (1)
6[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.ECDsaOpenSsl))]