2 instantiations of ECDiffieHellmanCngPublicKey
System.Security.Cryptography (2)
System\Security\Cryptography\ECDiffieHellmanCngPublicKey.cs (2)
79return new ECDiffieHellmanCngPublicKey(publicKeyBlob, null, format); 88return new ECDiffieHellmanCngPublicKey(blob, curveName, format);
9 references to ECDiffieHellmanCngPublicKey
System.Core (1)
System.Core.cs (1)
221[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.ECDiffieHellmanCngPublicKey))]
System.Security.Cryptography (7)
System\Security\Cryptography\ECDiffieHellmanCng.Derive.cs (4)
15if (otherPartyPublicKey is ECDiffieHellmanCngPublicKey otherKey) 34using (otherKey = (ECDiffieHellmanCngPublicKey)otherPartyCng.PublicKey) 102if (otherPartyPublicKey is ECDiffieHellmanCngPublicKey otherKey) 116using (otherKey = (ECDiffieHellmanCngPublicKey)otherPartyCng.PublicKey)
System\Security\Cryptography\ECDiffieHellmanCng.Key.cs (1)
18return ECDiffieHellmanCngPublicKey.FromKey(Key);
System\Security\Cryptography\ECDiffieHellmanCngPublicKey.cs (2)
46public static ECDiffieHellmanCngPublicKey FromXmlString(string xml) 83internal static ECDiffieHellmanCngPublicKey FromKey(CngKey key)
System.Security.Cryptography.Cng (1)
System.Security.Cryptography.Cng.cs (1)
27[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.ECDiffieHellmanCngPublicKey))]