Files
Aug2021-Cpp2IL-Dump/mscorlib/System/Security/Cryptography/Rijndael.cs
T
2026-04-10 22:50:51 +02:00

53 lines
2.4 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// <summary>Represents the base class from which all implementations of the <see cref="T:System.Security.Cryptography.Rijndael" /> symmetric encryption algorithm must inherit.</summary>
// Token: 0x020003FD RID: 1021
[Token(Token = "0x20003FD")]
[ComVisible(true)]
public abstract class Rijndael : SymmetricAlgorithm
{
/// <summary>Initializes a new instance of <see cref="T:System.Security.Cryptography.Rijndael" />.</summary>
// Token: 0x0600224A RID: 8778 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600224A")]
[Address(RVA = "0x2DF9050", Offset = "0x2DF7E50", VA = "0x182DF9050")]
protected Rijndael()
{
}
/// <summary>Creates a cryptographic object to perform the <see cref="T:System.Security.Cryptography.Rijndael" /> algorithm.</summary>
/// <returns>A cryptographic object.</returns>
/// <exception cref="T:System.Reflection.TargetInvocationException">The algorithm was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible.</exception>
// Token: 0x0600224B RID: 8779 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600224B")]
[Address(RVA = "0x2DF8DF0", Offset = "0x2DF7BF0", VA = "0x182DF8DF0")]
public new static Rijndael Create()
{
return null;
}
/// <summary>Creates a cryptographic object to perform the specified implementation of the <see cref="T:System.Security.Cryptography.Rijndael" /> algorithm.</summary>
/// <param name="algName">The name of the specific implementation of <see cref="T:System.Security.Cryptography.Rijndael" /> to create.</param>
/// <returns>A cryptographic object.</returns>
/// <exception cref="T:System.Reflection.TargetInvocationException">The algorithm described by the <paramref name="algName" /> parameter was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible.</exception>
// Token: 0x0600224C RID: 8780 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600224C")]
[Address(RVA = "0x2DF8E40", Offset = "0x2DF7C40", VA = "0x182DF8E40")]
public new static Rijndael Create(string algName)
{
return null;
}
// Token: 0x04001386 RID: 4998
[Token(Token = "0x4001386")]
private static KeySizes[] s_legalBlockSizes;
// Token: 0x04001387 RID: 4999
[Token(Token = "0x4001387")]
private static KeySizes[] s_legalKeySizes;
}
}