4 instantiations of CngAlgorithmCore
System.Security.Cryptography (4)
System\Security\Cryptography\DSACng.cs (1)
12private CngAlgorithmCore _core = new CngAlgorithmCore(typeof(DSACng));
System\Security\Cryptography\ECDiffieHellmanCng.cs (1)
14private CngAlgorithmCore _core = new CngAlgorithmCore(typeof(ECDiffieHellmanCng)) { DefaultKeyType = CngAlgorithm.ECDiffieHellman };
System\Security\Cryptography\ECDsaCng.cs (1)
13private CngAlgorithmCore _core = new CngAlgorithmCore(typeof(ECDsaCng));
System\Security\Cryptography\RSACng.cs (1)
12private CngAlgorithmCore _core = new CngAlgorithmCore(typeof(RSACng));
8 references to CngAlgorithmCore
System.Security.Cryptography (8)
System\Security\Cryptography\DSACng.cs (2)
12private CngAlgorithmCore _core = new CngAlgorithmCore(typeof(DSACng)); 31Key = CngAlgorithmCore.Duplicate(key);
System\Security\Cryptography\ECDiffieHellmanCng.cs (2)
14private CngAlgorithmCore _core = new CngAlgorithmCore(typeof(ECDiffieHellmanCng)) { DefaultKeyType = CngAlgorithm.ECDiffieHellman }; 31Key = CngAlgorithmCore.Duplicate(key);
System\Security\Cryptography\ECDsaCng.cs (2)
13private CngAlgorithmCore _core = new CngAlgorithmCore(typeof(ECDsaCng)); 49Key = CngAlgorithmCore.Duplicate(key);
System\Security\Cryptography\RSACng.cs (2)
12private CngAlgorithmCore _core = new CngAlgorithmCore(typeof(RSACng)); 31Key = CngAlgorithmCore.Duplicate(key);