64 lines
2.5 KiB
C#
64 lines
2.5 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Security.Cryptography
|
|
{
|
|
/// <summary>Contains the typical parameters for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm.</summary>
|
|
// Token: 0x02000401 RID: 1025
|
|
[Token(Token = "0x2000401")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public struct DSAParameters
|
|
{
|
|
/// <summary>Specifies the <see langword="P" /> parameter for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm.</summary>
|
|
// Token: 0x0400140D RID: 5133
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
|
|
[Token(Token = "0x400140D")]
|
|
public byte[] P;
|
|
|
|
/// <summary>Specifies the <see langword="Q" /> parameter for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm.</summary>
|
|
// Token: 0x0400140E RID: 5134
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x8")]
|
|
[Token(Token = "0x400140E")]
|
|
public byte[] Q;
|
|
|
|
/// <summary>Specifies the <see langword="G" /> parameter for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm.</summary>
|
|
// Token: 0x0400140F RID: 5135
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x400140F")]
|
|
public byte[] G;
|
|
|
|
/// <summary>Specifies the <see langword="Y" /> parameter for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm.</summary>
|
|
// Token: 0x04001410 RID: 5136
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
|
|
[Token(Token = "0x4001410")]
|
|
public byte[] Y;
|
|
|
|
/// <summary>Specifies the <see langword="J" /> parameter for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm.</summary>
|
|
// Token: 0x04001411 RID: 5137
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
|
|
[Token(Token = "0x4001411")]
|
|
public byte[] J;
|
|
|
|
/// <summary>Specifies the <see langword="X" /> parameter for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm.</summary>
|
|
// Token: 0x04001412 RID: 5138
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x28")]
|
|
[Token(Token = "0x4001412")]
|
|
[NonSerialized]
|
|
public byte[] X;
|
|
|
|
/// <summary>Specifies the seed for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm.</summary>
|
|
// Token: 0x04001413 RID: 5139
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x30")]
|
|
[Token(Token = "0x4001413")]
|
|
public byte[] Seed;
|
|
|
|
/// <summary>Specifies the counter for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm.</summary>
|
|
// Token: 0x04001414 RID: 5140
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x38")]
|
|
[Token(Token = "0x4001414")]
|
|
public int Counter;
|
|
}
|
|
}
|