using System;
using System.Runtime.InteropServices;
namespace System.Security.Cryptography
{
/// Specifies whether white space should be ignored in the base 64 transformation.
// Token: 0x020004FF RID: 1279
[ComVisible(true)]
[Serializable]
public enum FromBase64TransformMode
{
/// White space should be ignored.
// Token: 0x04001349 RID: 4937
IgnoreWhiteSpaces,
/// White space should not be ignored.
// Token: 0x0400134A RID: 4938
DoNotIgnoreWhiteSpaces
}
}