8 instantiations of ECDiffieHellmanCng
System.Security.Cryptography (8)
System\Security\Cryptography\ECDiffieHellman.Create.Cng.cs (3)
10return new ECDiffieHellmanWrapper(new ECDiffieHellmanCng()); 15return new ECDiffieHellmanWrapper(new ECDiffieHellmanCng(curve)); 20var ecdh = new ECDiffieHellmanCng();
System\Security\Cryptography\ECDiffieHellmanCng.Derive.cs (2)
30using (ECDiffieHellmanCng otherPartyCng = new ECDiffieHellmanCng()) 112using (ECDiffieHellmanCng otherPartyCng = new ECDiffieHellmanCng())
System\Security\Cryptography\X509Certificates\CertificatePal.Windows.PrivateKey.cs (2)
69return new ECDiffieHellmanCng(cngKey, transferOwnership: true); 187using (ECDiffieHellmanCng clonedKey = new ECDiffieHellmanCng())
System\Security\Cryptography\X509Certificates\X509Pal.Windows.PublicKey.cs (1)
42factory: cngKey => new ECDiffieHellmanCng(cngKey, transferOwnership: true),
10 references to ECDiffieHellmanCng
System.Core (1)
System.Core.cs (1)
220[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.ECDiffieHellmanCng))]
System.Security.Cryptography (8)
System\Security\Cryptography\ECDiffieHellman.Create.Cng.cs (1)
20var ecdh = new ECDiffieHellmanCng();
System\Security\Cryptography\ECDiffieHellmanCng.cs (1)
14private CngAlgorithmCore _core = new CngAlgorithmCore(typeof(ECDiffieHellmanCng)) { DefaultKeyType = CngAlgorithm.ECDiffieHellman };
System\Security\Cryptography\ECDiffieHellmanCng.Derive.cs (2)
30using (ECDiffieHellmanCng otherPartyCng = new ECDiffieHellmanCng()) 112using (ECDiffieHellmanCng otherPartyCng = new ECDiffieHellmanCng())
System\Security\Cryptography\X509Certificates\CertificatePal.Windows.PrivateKey.cs (4)
65static ECDiffieHellmanCng? FromCngKey(CngKey cngKey) 172ECDiffieHellmanCng? ecdhCng = ecdh as ECDiffieHellmanCng; 187using (ECDiffieHellmanCng clonedKey = new ECDiffieHellmanCng())
System.Security.Cryptography.Cng (1)
System.Security.Cryptography.Cng.cs (1)
26[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.ECDiffieHellmanCng))]