7 instantiations of ECDsaOpenSsl
System.Security.Cryptography (7)
System\Security\Cryptography\ECDsa.Create.OpenSsl.cs (3)
13
return new ECDsaWrapper(new
ECDsaOpenSsl
());
24
return new ECDsaWrapper(new
ECDsaOpenSsl
(curve));
35
var ec = new
ECDsaOpenSsl
();
System\Security\Cryptography\X509Certificates\OpenSslExportProvider.cs (1)
37
Interop.Crypto.EvpAlgorithmId.ECC => new
ECDsaOpenSsl
(privateKey),
System\Security\Cryptography\X509Certificates\OpenSslX509CertificateReader.cs (3)
577
return new
ECDsaOpenSsl
(publicKeyHandle);
598
return new
ECDsaOpenSsl
(_privateKey);
652
using (typedKey = new
ECDsaOpenSsl
())
7 references to ECDsaOpenSsl
System.Net.Security (2)
System\Net\Security\SslStreamCertificateContext.Linux.cs (2)
88
using (
ECDsaOpenSsl
? ecdsa = (
ECDsaOpenSsl
?)target.GetECDsaPrivateKey())
System.Security.Cryptography (4)
System\Security\Cryptography\ECDsa.Create.OpenSsl.cs (1)
35
var
ec = new ECDsaOpenSsl();
System\Security\Cryptography\ECDsaOpenSsl.cs (1)
89
throw new PlatformNotSupportedException(SR.Format(SR.PlatformNotSupported_CryptographyOpenSSLNotFound, nameof(
ECDsaOpenSsl
)));
System\Security\Cryptography\X509Certificates\OpenSslX509CertificateReader.cs (2)
642
ECDsaOpenSsl
? 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
))]