| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // System.Security.Cryptography DSAParameters.cs
- //
- // Author:
- // Thomas Neidhart ([email protected])
- //
- 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
|