9 references to AES_192_CBC
Microsoft.AspNetCore.DataProtection (3)
AuthenticatedEncryption\AuthenticatedEncryptorFactory.cs (3)
121
case EncryptionAlgorithm.
AES_192_CBC
:
139
case EncryptionAlgorithm.
AES_192_CBC
:
172
case EncryptionAlgorithm.
AES_192_CBC
:
Microsoft.AspNetCore.DataProtection.Tests (6)
AuthenticatedEncryption\ConfigurationModel\AuthenticatedEncryptorDescriptorDeserializerTests.cs (1)
21
EncryptionAlgorithm = EncryptionAlgorithm.
AES_192_CBC
,
AuthenticatedEncryption\ConfigurationModel\AuthenticatedEncryptorDescriptorTests.cs (5)
24
[InlineData(EncryptionAlgorithm.
AES_192_CBC
, ValidationAlgorithm.HMACSHA256)]
27
[InlineData(EncryptionAlgorithm.
AES_192_CBC
, ValidationAlgorithm.HMACSHA512)]
108
{ EncryptionAlgorithm.
AES_192_CBC
, ValidationAlgorithm.HMACSHA256, () => new HMACSHA256() },
111
{ EncryptionAlgorithm.
AES_192_CBC
, ValidationAlgorithm.HMACSHA512, () => new HMACSHA512() },
147
var descriptor = CreateDescriptor(EncryptionAlgorithm.
AES_192_CBC
, ValidationAlgorithm.HMACSHA512, masterKey.ToSecret());