using System;
using System.Runtime.InteropServices;
namespace System.Security.Cryptography
{
/// Specifies the type of padding to apply when the message data block is shorter than the full number of bytes needed for a cryptographic operation.
// Token: 0x02000513 RID: 1299
[ComVisible(true)]
[Serializable]
public enum PaddingMode
{
/// No padding is done.
// Token: 0x04001372 RID: 4978
None = 1,
/// The PKCS #7 padding string consists of a sequence of bytes, each of which is equal to the total number of padding bytes added.
// Token: 0x04001373 RID: 4979
PKCS7,
/// The padding string consists of bytes set to zero.
// Token: 0x04001374 RID: 4980
Zeros,
/// The ANSIX923 padding string consists of a sequence of bytes filled with zeros before the length.
// Token: 0x04001375 RID: 4981
ANSIX923,
/// The ISO10126 padding string consists of random data before the length.
// Token: 0x04001376 RID: 4982
ISO10126
}
}