public override bool Equals(
            object obj)
        {
            if (obj == this)
            {
                return(true);
            }

            ElGamalKeyParameters other = obj as ElGamalKeyParameters;

            if (other == null)
            {
                return(false);
            }

            return(Equals(other));
        }
 protected bool Equals(
     ElGamalKeyParameters other)
 {
     return(BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.Equals(parameters, other.parameters) &&
            base.Equals(other));
 }