7 instantiations of ECDsaCng
System.Security.Cryptography (6)
System\Security\Cryptography\ECDsa.Create.Windows.cs (3)
13return new ECDsaWrapper(new ECDsaCng()); 24return new ECDsaWrapper(new ECDsaCng(curve)); 35var ec = new ECDsaCng();
System\Security\Cryptography\X509Certificates\CertificatePal.Windows.PrivateKey.cs (2)
58return new ECDsaCng(cngKey, transferOwnership: true); 162using (ECDsaCng clonedKey = new ECDsaCng())
System\Security\Cryptography\X509Certificates\X509Pal.Windows.PublicKey.cs (1)
30factory: cngKey => new ECDsaCng(cngKey, transferOwnership: true));
System.Security.Cryptography.Pkcs (1)
Internal\Cryptography\Pal\Windows\PkcsPalWindows.cs (1)
150return (T)(object)new ECDsaCng(cngKey);
8 references to ECDsaCng
System.Core (1)
System.Core.cs (1)
225[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.ECDsaCng))]
System.Security.Cryptography (6)
System\Security\Cryptography\CryptoConfig.cs (1)
147Type ECDsaCngType = typeof(ECDsaCng);
System\Security\Cryptography\ECDsa.Create.Windows.cs (1)
35var ec = new ECDsaCng();
System\Security\Cryptography\ECDsaCng.cs (1)
13private CngAlgorithmCore _core = new CngAlgorithmCore(typeof(ECDsaCng));
System\Security\Cryptography\X509Certificates\CertificatePal.Windows.PrivateKey.cs (3)
147ECDsaCng? ecdsaCng = ecdsa as ECDsaCng; 162using (ECDsaCng clonedKey = new ECDsaCng())
System.Security.Cryptography.Cng (1)
System.Security.Cryptography.Cng.cs (1)
29[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.ECDsaCng))]