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
X509KeyUsageFlags.cs
Go to the documentation of this file.
1using System;
2
4{
5 // Token: 0x020000FC RID: 252
6 [Flags]
7 public enum X509KeyUsageFlags
8 {
9 // Token: 0x040004BD RID: 1213
10 None = 0,
11 // Token: 0x040004BE RID: 1214
12 EncipherOnly = 1,
13 // Token: 0x040004BF RID: 1215
14 CrlSign = 2,
15 // Token: 0x040004C0 RID: 1216
16 KeyCertSign = 4,
17 // Token: 0x040004C1 RID: 1217
18 KeyAgreement = 8,
19 // Token: 0x040004C2 RID: 1218
21 // Token: 0x040004C3 RID: 1219
22 KeyEncipherment = 32,
23 // Token: 0x040004C4 RID: 1220
24 NonRepudiation = 64,
25 // Token: 0x040004C5 RID: 1221
26 DigitalSignature = 128,
27 // Token: 0x040004C6 RID: 1222
28 DecipherOnly = 32768
29 }
30}