This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
using System;
using Cpp2IlInjected;
namespace System.Net.Security
{
/// <summary>The EncryptionPolicy to use.</summary>
// Token: 0x020002F1 RID: 753
[Token(Token = "0x20002F1")]
public enum EncryptionPolicy
{
/// <summary>Require encryption and never allow a NULL cipher.</summary>
// Token: 0x04000CC8 RID: 3272
[Token(Token = "0x4000CC8")]
RequireEncryption,
/// <summary>Prefer that full encryption be used, but allow a NULL cipher (no encryption) if the server agrees.</summary>
// Token: 0x04000CC9 RID: 3273
[Token(Token = "0x4000CC9")]
AllowNoEncryption,
/// <summary>Allow no encryption and request that a NULL cipher be used if the other endpoint can handle a NULL cipher.</summary>
// Token: 0x04000CCA RID: 3274
[Token(Token = "0x4000CCA")]
NoEncryption
}
}