using System;
using Cpp2IlInjected;
namespace System.Net.Security
{
/// The EncryptionPolicy to use.
// Token: 0x020002F1 RID: 753
[Token(Token = "0x20002F1")]
public enum EncryptionPolicy
{
/// Require encryption and never allow a NULL cipher.
// Token: 0x04000CC8 RID: 3272
[Token(Token = "0x4000CC8")]
RequireEncryption,
/// Prefer that full encryption be used, but allow a NULL cipher (no encryption) if the server agrees.
// Token: 0x04000CC9 RID: 3273
[Token(Token = "0x4000CC9")]
AllowNoEncryption,
/// Allow no encryption and request that a NULL cipher be used if the other endpoint can handle a NULL cipher.
// Token: 0x04000CCA RID: 3274
[Token(Token = "0x4000CCA")]
NoEncryption
}
}