2 types derived from Rijndael
mscorlib (1)
system\security\cryptography\rijndaelmanaged.cs (1)
17public sealed class RijndaelManaged : Rijndael {
System.IdentityModel (1)
System\IdentityModel\RijndaelCryptoServiceProvider.cs (1)
12class RijndaelCryptoServiceProvider : Rijndael
16 references to Rijndael
mscorlib (3)
system\security\cryptography\rijndael.cs (3)
43new static public Rijndael Create() { 47new static public Rijndael Create(String algName) { 48return (Rijndael) CryptoConfig.CreateFromName(algName);
System.IdentityModel (10)
System\IdentityModel\CryptoHelper.cs (10)
20static Rijndael rijndael; 362internal static Rijndael Rijndael 368Rijndael tmp = SecurityUtils.RequiresFipsCompliance ? (Rijndael)new RijndaelCryptoServiceProvider() : new RijndaelManaged(); 441internal static Rijndael NewRijndaelSymmetricAlgorithm() 443Rijndael rijndael = (GetSymmetricAlgorithm(null, SecurityAlgorithms.Aes128Encryption) as Rijndael); 689symmetricAlgorithm = SecurityUtils.RequiresFipsCompliance ? (Rijndael)new RijndaelCryptoServiceProvider() : new RijndaelManaged(); 1035symmetricAlgorithm = SecurityUtils.RequiresFipsCompliance ? (Rijndael)new RijndaelCryptoServiceProvider() : new RijndaelManaged(); 1074symmetricAlgorithm = SecurityUtils.RequiresFipsCompliance ? (Rijndael)new RijndaelCryptoServiceProvider() : new RijndaelManaged();
System.Security (3)
system\security\cryptography\xml\encryptedxml.cs (3)
591} else if (symKey is Rijndael || symKey is Aes) { 835} else if (symmetricAlgorithm is Rijndael || symmetricAlgorithm is Aes) { 871} else if (symmetricAlgorithm is Rijndael || symmetricAlgorithm is Aes) {