4 types derived from Aes
System.Security.Cryptography (4)
System\Security\Cryptography\AesCng.Windows.cs (1)
17public sealed class AesCng : Aes, ICngSymmetricAlgorithm
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
11public sealed class AesCryptoServiceProvider : Aes
System\Security\Cryptography\AesImplementation.cs (1)
9internal sealed partial class AesImplementation : Aes
System\Security\Cryptography\AesManaged.cs (1)
12public sealed class AesManaged : Aes
47 references to Aes
Microsoft.AspNetCore.DataProtection (5)
AuthenticatedEncryption\AuthenticatedEncryptorFactory.cs (1)
177return typeof(Aes);
AuthenticatedEncryption\ConfigurationModel\ManagedAlgorithmHelpers.cs (1)
16typeof(Aes),
AuthenticatedEncryption\ConfigurationModel\ManagedAuthenticatedEncryptorConfiguration.cs (1)
29public Type EncryptionAlgorithmType { get; set; } = typeof(Aes);
AuthenticatedEncryption\ManagedAuthenticatedEncryptorFactory.cs (2)
97if (configuration.EncryptionAlgorithmType == typeof(Aes)) 99return Aes.Create;
Microsoft.DotNet.HotReload.Watch (2)
src\sdk\src\Dotnet.Watch\AspireService\AspireServerService.cs (2)
84var aes = Aes.Create();
mscorlib (1)
src\runtime\src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
857[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.Aes))]
netstandard (1)
netstandard.cs (1)
1840[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.Aes))]
System.Core (1)
System.Core.cs (1)
197[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.Aes))]
System.Security.Cryptography (16)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (5)
281cipher = Aes.Create(); 286cipher = Aes.Create(); 291cipher = Aes.Create(); 644Aes aes = Aes.Create();
System\Security\Cryptography\Aes.cs (3)
26public static new Aes Create() 33public static new Aes? Create(string algorithmName) 35return (Aes?)CryptoConfig.CreateFromName(algorithmName);
System\Security\Cryptography\AesCryptoServiceProvider.cs (2)
13private readonly Aes _impl; 19_impl = Aes.Create();
System\Security\Cryptography\AesManaged.cs (2)
14private readonly Aes _impl; 19_impl = Aes.Create();
System\Security\Cryptography\RijndaelImplementation.cs (2)
18private readonly Aes _impl; 26_impl = Aes.Create();
System\Security\Cryptography\RijndaelManaged.cs (2)
15private readonly Aes _impl; 22_impl = Aes.Create();
System.Security.Cryptography.Algorithms (1)
System.Security.Cryptography.Algorithms.cs (1)
4[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.Aes))]
System.Security.Cryptography.Pkcs (8)
Internal\Cryptography\Pal\AnyOS\ManagedPal.cs (3)
189alg = Aes.Create(); 193alg = Aes.Create(); 197alg = Aes.Create();
src\runtime\src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (5)
281cipher = Aes.Create(); 286cipher = Aes.Create(); 291cipher = Aes.Create(); 644Aes aes = Aes.Create();
System.Security.Cryptography.Xml (11)
System\Security\Cryptography\Xml\EncryptedXml.cs (7)
574using (Aes aes = Aes.Create()) 626else if (symKey is Rijndael || symKey is Aes) 653using (Aes aes = Aes.Create()) 893else if (symmetricAlgorithm is Rijndael || symmetricAlgorithm is Aes) 935else if (symmetricAlgorithm is Rijndael || symmetricAlgorithm is Aes)
System\Security\Cryptography\Xml\SymmetricKeyWrap.cs (4)
128Aes? aes = null; 133aes = Aes.Create(); 191Aes? aes = null; 196aes = Aes.Create();
System.ServiceModel.Primitives (1)
System\IdentityModel\CryptoHelper.cs (1)
241return Aes.Create();