4 instantiations of DSACng
System.Security.Cryptography (3)
System\Security\Cryptography\DSA.Create.Windows.cs (1)
10return new DSAWrapper(new DSACng());
System\Security\Cryptography\X509Certificates\CertificatePal.Windows.PrivateKey.cs (2)
44return new DSACng(cngKey, transferOwnership: true); 137using (DSACng clonedKey = new DSACng())
System.Security.Cryptography.Pkcs (1)
Internal\Cryptography\Pal\Windows\PkcsPalWindows.cs (1)
152return (T)(object)new DSACng(cngKey);
6 references to DSACng
System.Core (1)
System.Core.cs (1)
217[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.DSACng))]
System.Security.Cryptography (4)
System\Security\Cryptography\DSACng.cs (1)
12private CngAlgorithmCore _core = new CngAlgorithmCore(typeof(DSACng));
System\Security\Cryptography\X509Certificates\CertificatePal.Windows.PrivateKey.cs (3)
109DSACng? dsaCng = dsa as DSACng; 137using (DSACng clonedKey = new DSACng())
System.Security.Cryptography.Cng (1)
System.Security.Cryptography.Cng.cs (1)
25[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.DSACng))]