This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,20 @@
using System;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// <summary>Specifies the padding mode to use with RSA signature creation or verification operations.</summary>
// Token: 0x020003CC RID: 972
[Token(Token = "0x20003CC")]
public enum RSASignaturePaddingMode
{
/// <summary>PKCS #1 v1.5</summary>
// Token: 0x040012ED RID: 4845
[Token(Token = "0x40012ED")]
Pkcs1,
/// <summary>Probabilistic Signature Scheme</summary>
// Token: 0x040012EE RID: 4846
[Token(Token = "0x40012EE")]
Pss
}
}