You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

46 lines
1.1 KiB

using System;
using Org.BouncyCastle.Math;
namespace Org.BouncyCastle.Tls.Crypto
{
/// <summary>Carrier class for Diffie-Hellman group parameters.</summary>
public class DHGroup
{
private readonly BigInteger g, p, q;
private readonly int l;
/// <summary>Base constructor with the prime factor of (p - 1).</summary>
/// <param name="p">the prime modulus.</param>
/// <param name="q">specifies the prime factor of (p - 1).</param>
/// <param name="g">the base generator.</param>
/// <param name="l"></param>
public DHGroup(BigInteger p, BigInteger q, BigInteger g, int l)
{
this.p = p;
this.g = g;
this.q = q;
this.l = l;
}
public virtual BigInteger G
{
get { return g; }
}
public virtual int L
{
get { return l; }
}
public virtual BigInteger P
{
get { return p; }
}
public virtual BigInteger Q
{
get { return q; }
}
}
}