SecT193FieldElement
using Org.BouncyCastle.Math.Raw;
using Org.BouncyCastle.Utilities;
using System;
namespace Org.BouncyCastle.Math.EC.Custom.Sec
{
internal class SecT193FieldElement : AbstractF2mFieldElement
{
protected internal readonly ulong[] x;
public override bool IsOne => Nat256.IsOne64(x);
public override bool IsZero => Nat256.IsZero64(x);
public override string FieldName => "SecT193Field";
public override int FieldSize => 193;
public override bool HasFastTrace => true;
public virtual int Representation => 2;
public virtual int M => 193;
public virtual int K1 => 15;
public virtual int K2 => 0;
public virtual int K3 => 0;
public SecT193FieldElement(BigInteger x)
{
if (x == null || x.SignValue < 0 || x.BitLength > 193)
throw new ArgumentException("value invalid for SecT193FieldElement", "x");
this.x = SecT193Field.FromBigInteger(x);
}
public SecT193FieldElement()
{
x = Nat256.Create64();
}
protected internal SecT193FieldElement(ulong[] x)
{
this.x = x;
}
public override bool TestBitZero()
{
return (x[0] & 1) != 0;
}
public override BigInteger ToBigInteger()
{
return Nat256.ToBigInteger64(x);
}
public override ECFieldElement Add(ECFieldElement b)
{
ulong[] array = Nat256.Create64();
SecT193Field.Add(x, ((SecT193FieldElement)b).x, array);
return new SecT193FieldElement(array);
}
public override ECFieldElement AddOne()
{
ulong[] array = Nat256.Create64();
SecT193Field.AddOne(x, array);
return new SecT193FieldElement(array);
}
public override ECFieldElement Subtract(ECFieldElement b)
{
return Add(b);
}
public override ECFieldElement Multiply(ECFieldElement b)
{
ulong[] array = Nat256.Create64();
SecT193Field.Multiply(x, ((SecT193FieldElement)b).x, array);
return new SecT193FieldElement(array);
}
public override ECFieldElement MultiplyMinusProduct(ECFieldElement b, ECFieldElement x, ECFieldElement y)
{
return MultiplyPlusProduct(b, x, y);
}
public override ECFieldElement MultiplyPlusProduct(ECFieldElement b, ECFieldElement x, ECFieldElement y)
{
ulong[] array = this.x;
ulong[] array2 = ((SecT193FieldElement)b).x;
ulong[] array3 = ((SecT193FieldElement)x).x;
ulong[] array4 = ((SecT193FieldElement)y).x;
ulong[] array5 = Nat256.CreateExt64();
SecT193Field.MultiplyAddToExt(array, array2, array5);
SecT193Field.MultiplyAddToExt(array3, array4, array5);
ulong[] array6 = Nat256.Create64();
SecT193Field.Reduce(array5, array6);
return new SecT193FieldElement(array6);
}
public override ECFieldElement Divide(ECFieldElement b)
{
return Multiply(b.Invert());
}
public override ECFieldElement Negate()
{
return this;
}
public override ECFieldElement Square()
{
ulong[] array = Nat256.Create64();
SecT193Field.Square(x, array);
return new SecT193FieldElement(array);
}
public override ECFieldElement SquareMinusProduct(ECFieldElement x, ECFieldElement y)
{
return SquarePlusProduct(x, y);
}
public override ECFieldElement SquarePlusProduct(ECFieldElement x, ECFieldElement y)
{
ulong[] array = this.x;
ulong[] array2 = ((SecT193FieldElement)x).x;
ulong[] array3 = ((SecT193FieldElement)y).x;
ulong[] array4 = Nat256.CreateExt64();
SecT193Field.SquareExt(array, array4);
SecT193Field.MultiplyAddToExt(array2, array3, array4);
ulong[] array5 = Nat256.Create64();
SecT193Field.Reduce(array4, array5);
return new SecT193FieldElement(array5);
}
public override ECFieldElement SquarePow(int pow)
{
if (pow < 1)
return this;
ulong[] array = Nat256.Create64();
SecT193Field.SquareN(x, pow, array);
return new SecT193FieldElement(array);
}
public override ECFieldElement HalfTrace()
{
ulong[] array = Nat256.Create64();
SecT193Field.HalfTrace(x, array);
return new SecT193FieldElement(array);
}
public override int Trace()
{
return (int)SecT193Field.Trace(x);
}
public override ECFieldElement Invert()
{
ulong[] array = Nat256.Create64();
SecT193Field.Invert(x, array);
return new SecT193FieldElement(array);
}
public override ECFieldElement Sqrt()
{
ulong[] array = Nat256.Create64();
SecT193Field.Sqrt(x, array);
return new SecT193FieldElement(array);
}
public override bool Equals(object obj)
{
return Equals(obj as SecT193FieldElement);
}
public override bool Equals(ECFieldElement other)
{
return Equals(other as SecT193FieldElement);
}
public virtual bool Equals(SecT193FieldElement other)
{
if (this == other)
return true;
if (other == null)
return false;
return Nat256.Eq64(x, other.x);
}
public override int GetHashCode()
{
return 1930015 ^ Arrays.GetHashCode(x, 0, 4);
}
}
}