terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches
Aes.cs
Go to the documentation of this file.
1using System;
3
5{
6 // Token: 0x020002C3 RID: 707
7 [TypeForwardedFrom("System.Core, Version=2.0.5.0, Culture=Neutral, PublicKeyToken=7cec85d7bea7798e")]
8 public abstract class Aes : SymmetricAlgorithm
9 {
10 // Token: 0x060017F5 RID: 6133 RVA: 0x0003383C File Offset: 0x00031A3C
11 protected Aes()
12 {
13 if (!true)
14 {
15 }
16 }
17
18 // Token: 0x060017F6 RID: 6134 RVA: 0x00033854 File Offset: 0x00031A54
19 public new static Aes Create()
20 {
21 if (!true)
22 {
23 }
24 return Aes.Create("AES");
25 }
26
27 // Token: 0x060017F7 RID: 6135 RVA: 0x00033870 File Offset: 0x00031A70
28 public new static Aes Create(string algorithmName)
29 {
30 object obj;
31 while (obj == null)
32 {
33 }
34 }
35
36 // Token: 0x060017F8 RID: 6136 RVA: 0x00033884 File Offset: 0x00031A84
37 // Note: this type is marked as 'beforefieldinit'.
38 static Aes()
39 {
40 }
41
42 // Token: 0x04000C75 RID: 3189
43 private static KeySizes[] s_legalBlockSizes;
44
45 // Token: 0x04000C76 RID: 3190
46 private static KeySizes[] s_legalKeySizes;
47 }
48}
class f__AnonymousType0<< Count > j__TPar
static KeySizes[] s_legalKeySizes
Definition Aes.cs:46
static KeySizes[] s_legalBlockSizes
Definition Aes.cs:43
static new Aes Create(string algorithmName)
Definition Aes.cs:28
static new Aes Create()
Definition Aes.cs:19