Ejemplo n.º 1
0
        public override bool Equals(
            object obj)
        {
            if (obj == this)
            {
                return(true);
            }

            DHPublicKeyParameters other = obj as DHPublicKeyParameters;

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

            return(Equals(other));
        }
Ejemplo n.º 2
0
 protected bool Equals(
     DHPublicKeyParameters other)
 {
     return(y.Equals(other.y) && base.Equals(other));
 }