2 types derived from Rijndael
mscorlib (1)
system\security\cryptography\rijndaelmanaged.cs (1)
17
public sealed class RijndaelManaged :
Rijndael
{
System.IdentityModel (1)
System\IdentityModel\RijndaelCryptoServiceProvider.cs (1)
12
class RijndaelCryptoServiceProvider :
Rijndael
16 references to Rijndael
mscorlib (3)
system\security\cryptography\rijndael.cs (3)
43
new static public
Rijndael
Create() {
47
new static public
Rijndael
Create(String algName) {
48
return (
Rijndael
) CryptoConfig.CreateFromName(algName);
System.IdentityModel (10)
System\IdentityModel\CryptoHelper.cs (10)
20
static
Rijndael
rijndael;
362
internal static
Rijndael
Rijndael
368
Rijndael
tmp = SecurityUtils.RequiresFipsCompliance ? (
Rijndael
)new RijndaelCryptoServiceProvider() : new RijndaelManaged();
441
internal static
Rijndael
NewRijndaelSymmetricAlgorithm()
443
Rijndael
rijndael = (GetSymmetricAlgorithm(null, SecurityAlgorithms.Aes128Encryption) as
Rijndael
);
689
symmetricAlgorithm = SecurityUtils.RequiresFipsCompliance ? (
Rijndael
)new RijndaelCryptoServiceProvider() : new RijndaelManaged();
1035
symmetricAlgorithm = SecurityUtils.RequiresFipsCompliance ? (
Rijndael
)new RijndaelCryptoServiceProvider() : new RijndaelManaged();
1074
symmetricAlgorithm = 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) {