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

            DsaPublicKeyParameters other = obj as DsaPublicKeyParameters;

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

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