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

Equals() protected method

protected Equals ( DsaPublicKeyParameters other ) : bool
other DsaPublicKeyParameters
return bool
		protected bool Equals(
			DsaPublicKeyParameters other)
		{
			return y.Equals(other.y) && base.Equals(other);
		}

Same methods

DsaPublicKeyParameters::Equals ( object obj ) : bool