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 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
}
}