Org.BouncyCastle.Crypto.Parameters.ElGamalParameters.Equals C# (CSharp) Method

Equals() protected method

protected Equals ( ElGamalParameters other ) : bool
other ElGamalParameters
return bool
		protected bool Equals(
			ElGamalParameters other)
		{
			return p.Equals(other.p) && g.Equals(other.g) && l == other.l;
		}

Same methods

ElGamalParameters::Equals ( object obj ) : bool