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 encryption or decryption operations.</summary>
// Token: 0x020003CA RID: 970
[Token(Token = "0x20003CA")]
public enum RSAEncryptionPaddingMode
{
/// <summary>PKCS #1 v1.5.</summary>
// Token: 0x040012E7 RID: 4839
[Token(Token = "0x40012E7")]
Pkcs1,
/// <summary>Optimal Asymmetric Encryption Padding.</summary>
// Token: 0x040012E8 RID: 4840
[Token(Token = "0x40012E8")]
Oaep
}
}