Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Security/Cryptography/Aes.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

52 lines
2.1 KiB
C#

using System;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// <summary>Represents the abstract base class from which all implementations of the Advanced Encryption Standard (AES) must inherit.</summary>
// Token: 0x020003E9 RID: 1001
[Token(Token = "0x20003E9")]
[TypeForwardedFrom("System.Core, Version=2.0.5.0, Culture=Neutral, PublicKeyToken=7cec85d7bea7798e")]
public abstract class Aes : SymmetricAlgorithm
{
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.Aes" /> class.</summary>
// Token: 0x06002305 RID: 8965 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002305")]
[Address(RVA = "0xBFEC90", Offset = "0xBFDC90", VA = "0x180BFEC90")]
protected Aes()
{
}
/// <summary>Creates a cryptographic object that is used to perform the symmetric algorithm.</summary>
/// <returns>A cryptographic object that is used to perform the symmetric algorithm.</returns>
// Token: 0x06002306 RID: 8966 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002306")]
[Address(RVA = "0xBFEA20", Offset = "0xBFDA20", VA = "0x180BFEA20")]
public new static Aes Create()
{
return null;
}
/// <summary>Creates a cryptographic object that specifies the implementation of AES to use to perform the symmetric algorithm.</summary>
/// <param name="algorithmName">The name of the specific implementation of AES to use.</param>
/// <returns>A cryptographic object that is used to perform the symmetric algorithm.</returns>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="algorithmName" /> parameter is <see langword="null" />.</exception>
// Token: 0x06002307 RID: 8967 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002307")]
[Address(RVA = "0xBFE960", Offset = "0xBFD960", VA = "0x180BFE960")]
public new static Aes Create(string algorithmName)
{
return null;
}
// Token: 0x040013B2 RID: 5042
[Token(Token = "0x40013B2")]
private static KeySizes[] s_legalBlockSizes;
// Token: 0x040013B3 RID: 5043
[Token(Token = "0x40013B3")]
private static KeySizes[] s_legalKeySizes;
}
}