DSAParameters.cs 563 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // System.Security.Cryptography DSAParameters.cs
  3. //
  4. // Author:
  5. // Thomas Neidhart ([email protected])
  6. //
  7. using System;
  8. namespace System.Security.Cryptography
  9. {
  10. /// <summary>
  11. /// DSA Parameters
  12. /// </summary>
  13. [Serializable]
  14. public struct DSAParameters
  15. {
  16. public int Counter;
  17. public byte[] G;
  18. public byte[] J;
  19. public byte[] P;
  20. public byte[] Q;
  21. public byte[] Seed;
  22. [NonSerialized]
  23. public byte[] X;
  24. public byte[] Y;
  25. } // DSAParameters
  26. } // System.Security.Cryptography