// // DHParameters.cs: Defines a structure that holds the parameters of the Diffie-Hellman algorithm // // Author: // Pieter Philippaerts (Pieter@mentalis.org) // // (C) 2003 The Mentalis.org Team (http://www.mentalis.org/) // using System; namespace Mono.Security.Cryptography { /// /// Represents the parameters of the Diffie-Hellman algorithm. /// [Serializable] public struct DHParameters { /// /// Represents the public P parameter of the Diffie-Hellman algorithm. /// public byte[] P; /// /// Represents the public G parameter of the Diffie-Hellman algorithm. /// public byte[] G; /// /// Represents the private X parameter of the Diffie-Hellman algorithm. /// [NonSerialized] public byte[] X; } }