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

Equals() protected method

protected Equals ( DsaParameters other ) : bool
other DsaParameters
return bool
		protected bool Equals(
			DsaParameters other)
		{
			return p.Equals(other.p) && q.Equals(other.q) && g.Equals(other.g);
		}

Same methods

DsaParameters::Equals ( object obj ) : bool