6 instantiations of RijndaelManaged
System.Core (1)
System\Security\Cryptography\AesManaged.cs (1)
32m_impl = new RijndaelManaged();
System.IdentityModel (5)
System\IdentityModel\CryptoHelper.cs (5)
368Rijndael tmp = SecurityUtils.RequiresFipsCompliance ? (Rijndael)new RijndaelCryptoServiceProvider() : new RijndaelManaged(); 689symmetricAlgorithm = SecurityUtils.RequiresFipsCompliance ? (Rijndael)new RijndaelCryptoServiceProvider() : new RijndaelManaged(); 1035symmetricAlgorithm = SecurityUtils.RequiresFipsCompliance ? (Rijndael)new RijndaelCryptoServiceProvider() : new RijndaelManaged(); 1074symmetricAlgorithm = SecurityUtils.RequiresFipsCompliance ? (Rijndael)new RijndaelCryptoServiceProvider() : new RijndaelManaged(); 1209return new RijndaelManaged();
1 reference to RijndaelManaged
mscorlib (1)
system\security\cryptography\cryptoconfig.cs (1)
201Type RijndaelManagedType = typeof(System.Security.Cryptography.RijndaelManaged);