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()); 41foreach (string key in _encryptionAlgoFactoryList.Keys) { 67if (!_encryptionAlgoFactoryList.TryGetValue (algorithmName, out factory)) {