Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DSAParameters.cs « System.Security.Cryptography « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cc8560ddcf25c5fd598f90ae59c5e9ca88ec9f64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
// System.Security.Cryptography DSAParameters.cs
//
// Author:
//   Thomas Neidhart (tome@sbox.tugraz.at)
//

using System;

namespace System.Security.Cryptography
{

	/// <summary>
	/// DSA Parameters
	/// </summary>
	[Serializable]
	public struct DSAParameters
	{
		public int Counter;
		
		public byte[] G;
		
		public byte[] J;
		
		public byte[] P;
		
		public byte[] Q;
		
		public byte[] Seed;
		
		[NonSerialized]
		public byte[] X;
		
		public byte[] Y;
		
	} // DSAParameters
	
} // System.Security.Cryptography