8 references to BCRYPT_AES_ALGORITHM
Microsoft.AspNetCore.Cryptography.Internal (1)
Cng\CachedAlgorithmHandles.cs (1)
50var algHandle = BCryptAlgorithmHandle.OpenAlgorithmHandle(Constants.BCRYPT_AES_ALGORITHM);
Microsoft.AspNetCore.DataProtection (5)
AuthenticatedEncryption\AuthenticatedEncryptorFactory.cs (1)
144return Constants.BCRYPT_AES_ALGORITHM;
AuthenticatedEncryption\CngCbcAuthenticatedEncryptorFactory.cs (1)
120if (configuration.EncryptionAlgorithm == Constants.BCRYPT_AES_ALGORITHM) { algorithmHandle = CachedAlgorithmHandles.AES_CBC; }
AuthenticatedEncryption\CngGcmAuthenticatedEncryptorFactory.cs (1)
86if (configuration.EncryptionAlgorithm == Constants.BCRYPT_AES_ALGORITHM) { algorithmHandle = CachedAlgorithmHandles.AES_GCM; }
AuthenticatedEncryption\ConfigurationModel\CngCbcAuthenticatedEncryptorConfiguration.cs (1)
28public string EncryptionAlgorithm { get; set; } = Constants.BCRYPT_AES_ALGORITHM;
AuthenticatedEncryption\ConfigurationModel\CngGcmAuthenticatedEncryptorConfiguration.cs (1)
28public string EncryptionAlgorithm { get; set; } = Constants.BCRYPT_AES_ALGORITHM;
Microsoft.AspNetCore.DataProtection.Tests (2)
AuthenticatedEncryption\ConfigurationModel\CngCbcAuthenticatedEncryptorDescriptorDeserializerTests.cs (1)
25EncryptionAlgorithm = Constants.BCRYPT_AES_ALGORITHM,
AuthenticatedEncryption\ConfigurationModel\CngGcmAuthenticatedEncryptorDescriptorDeserializerTests.cs (1)
25EncryptionAlgorithm = Constants.BCRYPT_AES_ALGORITHM,