1 instantiation of SqlAes256CbcAlgorithm
System.Data (1)
fx\src\data\System\Data\SqlClient\SqlAes256CbcFactory.cs (1)
75aesAlgorithm = new SqlAes256CbcAlgorithm(encryptedKey, encryptionType, algorithmVersion);
8 references to SqlAes256CbcAlgorithm
System.Data (8)
fx\src\data\System\Data\SqlClient\SqlAes256CbcFactory.cs (6)
24private readonly ConcurrentDictionary<string, SqlAes256CbcAlgorithm> _encryptionAlgorithms = 25new ConcurrentDictionary<string, SqlAes256CbcAlgorithm>(concurrencyLevel: 4 * Environment.ProcessorCount /* default value in ConcurrentDictionary*/, capacity: 2); 38Debug.Assert(string.Equals(encryptionAlgorithm, SqlAes256CbcAlgorithm.AlgorithmName, StringComparison.OrdinalIgnoreCase) == true); 43throw SQL.InvalidEncryptionType(SqlAes256CbcAlgorithm.AlgorithmName, 71SqlAes256CbcAlgorithm aesAlgorithm; 74SqlAeadAes256CbcHmac256EncryptionKey encryptedKey = new SqlAeadAes256CbcHmac256EncryptionKey(encryptionKey.RootKey, SqlAes256CbcAlgorithm.AlgorithmName);
fx\src\data\System\Data\SqlClient\SqlClientEncryptionAlgorithmFactoryList.cs (1)
27_encryptionAlgoFactoryList.TryAdd(SqlAes256CbcAlgorithm.AlgorithmName, new SqlAes256CbcFactory());
fx\src\data\System\Data\SqlClient\SqlSecurityUtility.cs (1)
136return SqlAes256CbcAlgorithm.AlgorithmName;