using System;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// Specifies the padding mode to use with RSA signature creation or verification operations.
// Token: 0x020003CC RID: 972
[Token(Token = "0x20003CC")]
public enum RSASignaturePaddingMode
{
/// PKCS #1 v1.5
// Token: 0x040012ED RID: 4845
[Token(Token = "0x40012ED")]
Pkcs1,
/// Probabilistic Signature Scheme
// Token: 0x040012EE RID: 4846
[Token(Token = "0x40012EE")]
Pss
}
}