using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Security.Cryptography { /// Specifies whether white space should be ignored in the base 64 transformation. // Token: 0x020003EF RID: 1007 [Token(Token = "0x20003EF")] [ComVisible(true)] [Serializable] public enum FromBase64TransformMode { /// White space should be ignored. // Token: 0x040013B7 RID: 5047 [Token(Token = "0x40013B7")] IgnoreWhiteSpaces, /// White space should not be ignored. // Token: 0x040013B8 RID: 5048 [Token(Token = "0x40013B8")] DoNotIgnoreWhiteSpaces } }