This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 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
}
}