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