package org.bouncycastle.math.ec.custom.gm;
import org.bouncycastle.math.ec.ECCurve;
import org.bouncycastle.math.ec.ECFieldElement;
import org.bouncycastle.math.ec.ECPoint;
import org.bouncycastle.math.raw.Nat;
import org.bouncycastle.math.raw.Nat256;
public class SM2P256V1Point extends ECPoint.AbstractFp
{
public SM2P256V1Point(ECCurve curve, ECFieldElement x, ECFieldElement y)
{
this(curve, x, y, false);
}
public SM2P256V1Point(ECCurve curve, ECFieldElement x, ECFieldElement y, boolean withCompression)
{
super(curve, x, y);
if ((x == null) != (y == null))
{
throw new IllegalArgumentException("Exactly one of the field elements is null");
}
this.withCompression = withCompression;
}
SM2P256V1Point(ECCurve curve, ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, boolean withCompression)
{
super(curve, x, y, zs);
this.withCompression = withCompression;
}
protected ECPoint detach()
{
return new SM2P256V1Point(null, getAffineXCoord(), getAffineYCoord());
}
public ECPoint add(ECPoint b)
{
if (this.isInfinity())
{
return b;
}
if (b.isInfinity())
{
return this;
}
if (this == b)
{
return twice();
}
ECCurve curve = this.getCurve();
SM2P256V1FieldElement X1 = (SM2P256V1FieldElement)this.x, Y1 = (SM2P256V1FieldElement)this.y;
SM2P256V1FieldElement X2 = (SM2P256V1FieldElement)b.getXCoord(), Y2 = (SM2P256V1FieldElement)b.getYCoord();
SM2P256V1FieldElement Z1 = (SM2P256V1FieldElement)this.zs[0];
SM2P256V1FieldElement Z2 = (SM2P256V1FieldElement)b.getZCoord(0);
int c;
int[] tt1 = Nat256.createExt();
int[] t2 = Nat256.create();
int[] t3 = Nat256.create();
int[] t4 = Nat256.create();
boolean Z1IsOne = Z1.isOne();
int[] U2, S2;
if (Z1IsOne)
{
U2 = X2.x;
S2 = Y2.x;
}
else
{
S2 = t3;
SM2P256V1Field.square(Z1.x, S2);
U2 = t2;
SM2P256V1Field.multiply(S2, X2.x, U2);
SM2P256V1Field.multiply(S2, Z1.x, S2);
SM2P256V1Field.multiply(S2, Y2.x, S2);
}
boolean Z2IsOne = Z2.isOne();
int[] U1, S1;
if (Z2IsOne)
{
U1 = X1.x;
S1 = Y1.x;
}
else
{
S1 = t4;
SM2P256V1Field.square(Z2.x, S1);
U1 = tt1;
SM2P256V1Field.multiply(S1, X1.x, U1);
SM2P256V1Field.multiply(S1, Z2.x, S1);
SM2P256V1Field.multiply(S1, Y1.x, S1);
}
int[] H = Nat256.create();
SM2P256V1Field.subtract(U1, U2, H);
int[] R = t2;
SM2P256V1Field.subtract(S1, S2, R);
if (Nat256.isZero(H))
{
if (Nat256.isZero(R))
{
return this.twice();
}
return curve.getInfinity();
}
int[] HSquared = t3;
SM2P256V1Field.square(H, HSquared);
int[] G = Nat256.create();
SM2P256V1Field.multiply(HSquared, H, G);
int[] V = t3;
SM2P256V1Field.multiply(HSquared, U1, V);
SM2P256V1Field.negate(G, G);
Nat256.mul(S1, G, tt1);
c = Nat256.addBothTo(V, V, G);
SM2P256V1Field.reduce32(c, G);
SM2P256V1FieldElement X3 = new SM2P256V1FieldElement(t4);
SM2P256V1Field.square(R, X3.x);
SM2P256V1Field.subtract(X3.x, G, X3.x);
SM2P256V1FieldElement Y3 = new SM2P256V1FieldElement(G);
SM2P256V1Field.subtract(V, X3.x, Y3.x);
SM2P256V1Field.multiplyAddToExt(Y3.x, R, tt1);
SM2P256V1Field.reduce(tt1, Y3.x);
SM2P256V1FieldElement Z3 = new SM2P256V1FieldElement(H);
if (!Z1IsOne)
{
SM2P256V1Field.multiply(Z3.x, Z1.x, Z3.x);
}
if (!Z2IsOne)
{
SM2P256V1Field.multiply(Z3.x, Z2.x, Z3.x);
}
ECFieldElement[] zs = new ECFieldElement[]{ Z3 };
return new SM2P256V1Point(curve, X3, Y3, zs, this.withCompression);
}
public ECPoint twice()
{
if (this.isInfinity())
{
return this;
}
ECCurve curve = this.getCurve();
SM2P256V1FieldElement Y1 = (SM2P256V1FieldElement)this.y;
if (Y1.isZero())
{
return curve.getInfinity();
}
SM2P256V1FieldElement X1 = (SM2P256V1FieldElement)this.x, Z1 = (SM2P256V1FieldElement)this.zs[0];
int c;
int[] t1 = Nat256.create();
int[] t2 = Nat256.create();
int[] Y1Squared = Nat256.create();
SM2P256V1Field.square(Y1.x, Y1Squared);
int[] T = Nat256.create();
SM2P256V1Field.square(Y1Squared, T);
boolean Z1IsOne = Z1.isOne();
int[] Z1Squared = Z1.x;
if (!Z1IsOne)
{
Z1Squared = t2;
SM2P256V1Field.square(Z1.x, Z1Squared);
}
SM2P256V1Field.subtract(X1.x, Z1Squared, t1);
int[] M = t2;
SM2P256V1Field.add(X1.x, Z1Squared, M);
SM2P256V1Field.multiply(M, t1, M);
c = Nat256.addBothTo(M, M, M);
SM2P256V1Field.reduce32(c, M);
int[] S = Y1Squared;
SM2P256V1Field.multiply(Y1Squared, X1.x, S);
c = Nat.shiftUpBits(8, S, 2, 0);
SM2P256V1Field.reduce32(c, S);
c = Nat.shiftUpBits(8, T, 3, 0, t1);
SM2P256V1Field.reduce32(c, t1);
SM2P256V1FieldElement X3 = new SM2P256V1FieldElement(T);
SM2P256V1Field.square(M, X3.x);
SM2P256V1Field.subtract(X3.x, S, X3.x);
SM2P256V1Field.subtract(X3.x, S, X3.x);
SM2P256V1FieldElement Y3 = new SM2P256V1FieldElement(S);
SM2P256V1Field.subtract(S, X3.x, Y3.x);
SM2P256V1Field.multiply(Y3.x, M, Y3.x);
SM2P256V1Field.subtract(Y3.x, t1, Y3.x);
SM2P256V1FieldElement Z3 = new SM2P256V1FieldElement(M);
SM2P256V1Field.twice(Y1.x, Z3.x);
if (!Z1IsOne)
{
SM2P256V1Field.multiply(Z3.x, Z1.x, Z3.x);
}
return new SM2P256V1Point(curve, X3, Y3, new ECFieldElement[]{ Z3 }, this.withCompression);
}
public ECPoint twicePlus(ECPoint b)
{
if (this == b)
{
return threeTimes();
}
if (this.isInfinity())
{
return b;
}
if (b.isInfinity())
{
return twice();
}
ECFieldElement Y1 = this.y;
if (Y1.isZero())
{
return b;
}
return twice().add(b);
}
public ECPoint threeTimes()
{
if (this.isInfinity() || this.y.isZero())
{
return this;
}
return twice().add(this);
}
public ECPoint negate()
{
if (this.isInfinity())
{
return this;
}
return new SM2P256V1Point(curve, this.x, this.y.negate(), this.zs, this.withCompression);
}
}