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

Equals() protected method

protected Equals ( ElGamalPrivateKeyParameters other ) : bool
other ElGamalPrivateKeyParameters
return bool
		protected bool Equals(
			ElGamalPrivateKeyParameters other)
		{
			return other.x.Equals(x) && base.Equals(other);
		}

Same methods

ElGamalPrivateKeyParameters::Equals ( object obj ) : bool