7 instantiations of ECDiffieHellmanOpenSsl
System.Security.Cryptography (7)
System\Security\Cryptography\ECDiffieHellman.Create.OpenSsl.cs (3)
10
return new ECDiffieHellmanWrapper(new
ECDiffieHellmanOpenSsl
());
15
return new ECDiffieHellmanWrapper(new
ECDiffieHellmanOpenSsl
(curve));
20
var ecdh = new
ECDiffieHellmanOpenSsl
();
System\Security\Cryptography\X509Certificates\OpenSslX509CertificateReader.cs (3)
587
return new
ECDiffieHellmanOpenSsl
(publicKeyHandle);
608
return new
ECDiffieHellmanOpenSsl
(_privateKey);
702
using (typedKey = new
ECDiffieHellmanOpenSsl
())
System\Security\Cryptography\X509Certificates\X509CertificateLoader.OpenSsl.cs (1)
70
return new AsymmetricAlgorithmPkcs12PrivateKey(pkcs8, static () => new
ECDiffieHellmanOpenSsl
());
6 references to ECDiffieHellmanOpenSsl
System.Security.Cryptography (5)
System\Security\Cryptography\ECDiffieHellman.Create.OpenSsl.cs (1)
20
var
ecdh = new ECDiffieHellmanOpenSsl();
System\Security\Cryptography\ECDiffieHellmanOpenSsl.cs (1)
89
throw new PlatformNotSupportedException(SR.Format(SR.PlatformNotSupported_CryptographyOpenSSLNotFound, nameof(
ECDiffieHellmanOpenSsl
)));
System\Security\Cryptography\X509Certificates\OpenSslX509CertificateReader.cs (2)
692
ECDiffieHellmanOpenSsl
? typedKey = privateKey as
ECDiffieHellmanOpenSsl
;
System\Security\Cryptography\X509Certificates\X509CertificateLoader.OpenSsl.cs (1)
109
return ((
ECDiffieHellmanOpenSsl
)key.Key).DuplicateKeyHandle();
System.Security.Cryptography.OpenSsl (1)
System.Security.Cryptography.OpenSsl.cs (1)
5
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.
ECDiffieHellmanOpenSsl
))]