46 lines
1.7 KiB
C#
46 lines
1.7 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.Security.Cryptography
|
|
{
|
|
/// <summary>Contains the typical parameters for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm.</summary>
|
|
// Token: 0x020004FB RID: 1275
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public struct DSAParameters
|
|
{
|
|
/// <summary>Specifies the counter for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm.</summary>
|
|
// Token: 0x0400133E RID: 4926
|
|
public int Counter;
|
|
|
|
/// <summary>Specifies the G parameter for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm.</summary>
|
|
// Token: 0x0400133F RID: 4927
|
|
public byte[] G;
|
|
|
|
/// <summary>Specifies the J parameter for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm.</summary>
|
|
// Token: 0x04001340 RID: 4928
|
|
public byte[] J;
|
|
|
|
/// <summary>Specifies the P parameter for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm.</summary>
|
|
// Token: 0x04001341 RID: 4929
|
|
public byte[] P;
|
|
|
|
/// <summary>Specifies the Q parameter for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm.</summary>
|
|
// Token: 0x04001342 RID: 4930
|
|
public byte[] Q;
|
|
|
|
/// <summary>Specifies the seed for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm.</summary>
|
|
// Token: 0x04001343 RID: 4931
|
|
public byte[] Seed;
|
|
|
|
/// <summary>Specifies the X parameter for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm.</summary>
|
|
// Token: 0x04001344 RID: 4932
|
|
[NonSerialized]
|
|
public byte[] X;
|
|
|
|
/// <summary>Specifies the Y parameter for the <see cref="T:System.Security.Cryptography.DSA" /> algorithm.</summary>
|
|
// Token: 0x04001345 RID: 4933
|
|
public byte[] Y;
|
|
}
|
|
}
|