This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,68 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// <summary>Represents the standard parameters for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm.</summary>
// Token: 0x0200041F RID: 1055
[Token(Token = "0x200041F")]
[ComVisible(true)]
[Serializable]
public struct RSAParameters
{
/// <summary>Represents the <see langword="Exponent" /> parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm.</summary>
// Token: 0x0400146A RID: 5226
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x400146A")]
public byte[] Exponent;
/// <summary>Represents the <see langword="Modulus" /> parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm.</summary>
// Token: 0x0400146B RID: 5227
[global::Cpp2IlInjected.FieldOffset(Offset = "0x8")]
[Token(Token = "0x400146B")]
public byte[] Modulus;
/// <summary>Represents the <see langword="P" /> parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm.</summary>
// Token: 0x0400146C RID: 5228
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x400146C")]
[NonSerialized]
public byte[] P;
/// <summary>Represents the <see langword="Q" /> parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm.</summary>
// Token: 0x0400146D RID: 5229
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
[Token(Token = "0x400146D")]
[NonSerialized]
public byte[] Q;
/// <summary>Represents the <see langword="DP" /> parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm.</summary>
// Token: 0x0400146E RID: 5230
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
[Token(Token = "0x400146E")]
[NonSerialized]
public byte[] DP;
/// <summary>Represents the <see langword="DQ" /> parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm.</summary>
// Token: 0x0400146F RID: 5231
[global::Cpp2IlInjected.FieldOffset(Offset = "0x28")]
[Token(Token = "0x400146F")]
[NonSerialized]
public byte[] DQ;
/// <summary>Represents the <see langword="InverseQ" /> parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm.</summary>
// Token: 0x04001470 RID: 5232
[global::Cpp2IlInjected.FieldOffset(Offset = "0x30")]
[Token(Token = "0x4001470")]
[NonSerialized]
public byte[] InverseQ;
/// <summary>Represents the <see langword="D" /> parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm.</summary>
// Token: 0x04001471 RID: 5233
[global::Cpp2IlInjected.FieldOffset(Offset = "0x38")]
[Token(Token = "0x4001471")]
[NonSerialized]
public byte[] D;
}
}