Exemplo n.º 1
0
 public virtual bool Equals(SecT283FieldElement other)
 {
     if (this == other)
     {
         return(true);
     }
     if (null == other)
     {
         return(false);
     }
     return(Nat320.Eq64(x, other.x));
 }
Exemplo n.º 2
0
 public virtual bool Equals(SecT283FieldElement other)
 {
     if (this == other)
         return true;
     if (null == other)
         return false;
     return Nat320.Eq64(x, other.x);
 }
Exemplo n.º 3
0
 public virtual bool Equals(SecT283FieldElement other)
 {
     return(this == other || (other != null && Nat320.Eq64(this.x, other.x)));
 }