1 write to _encryptionAlgoFactoryList
System.Data (1)
fx\src\data\System\Data\SqlClient\SqlClientEncryptionAlgorithmFactoryList.cs (1)
23
_encryptionAlgoFactoryList
= new ConcurrentDictionary<string, SqlClientEncryptionAlgorithmFactory>(concurrencyLevel: 4 * Environment.ProcessorCount /* default value in ConcurrentDictionary*/, capacity: 2);
4 references to _encryptionAlgoFactoryList
System.Data (4)
fx\src\data\System\Data\SqlClient\SqlClientEncryptionAlgorithmFactoryList.cs (4)
26
_encryptionAlgoFactoryList
.TryAdd(SqlAeadAes256CbcHmac256Algorithm.AlgorithmName, new SqlAeadAes256CbcHmac256Factory());
27
_encryptionAlgoFactoryList
.TryAdd(SqlAes256CbcAlgorithm.AlgorithmName, new SqlAes256CbcFactory());
41
foreach (string key in
_encryptionAlgoFactoryList
.Keys) {
67
if (!
_encryptionAlgoFactoryList
.TryGetValue (algorithmName, out factory)) {