Searched refs:Z1Squared (Results 1 – 6 of 6) sorted by relevance
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/ |
D | SecP192R1Point.java | 223 int[] Z1Squared = Z1.x; in twice() local 226 Z1Squared = t2; in twice() 227 SecP192R1Field.square(Z1.x, Z1Squared); in twice() 230 SecP192R1Field.subtract(X1.x, Z1Squared, t1); in twice() 233 SecP192R1Field.add(X1.x, Z1Squared, M); in twice()
|
D | SecP256R1Point.java | 221 int[] Z1Squared = Z1.x; in twice() local 224 Z1Squared = t2; in twice() 225 SecP256R1Field.square(Z1.x, Z1Squared); in twice() 228 SecP256R1Field.subtract(X1.x, Z1Squared, t1); in twice() 231 SecP256R1Field.add(X1.x, Z1Squared, M); in twice()
|
D | SecP224R1Point.java | 221 int[] Z1Squared = Z1.x; in twice() local 224 Z1Squared = t2; in twice() 225 SecP224R1Field.square(Z1.x, Z1Squared); in twice() 228 SecP224R1Field.subtract(X1.x, Z1Squared, t1); in twice() 231 SecP224R1Field.add(X1.x, Z1Squared, M); in twice()
|
D | SecP384R1Point.java | 222 int[] Z1Squared = Z1.x; in twice() local 225 Z1Squared = t2; in twice() 226 SecP384R1Field.square(Z1.x, Z1Squared); in twice() 229 SecP384R1Field.subtract(X1.x, Z1Squared, t1); in twice() 232 SecP384R1Field.add(X1.x, Z1Squared, M); in twice()
|
D | SecP521R1Point.java | 216 int[] Z1Squared = Z1.x; in twice() local 219 Z1Squared = t2; in twice() 220 SecP521R1Field.square(Z1.x, Z1Squared); in twice() 223 SecP521R1Field.subtract(X1.x, Z1Squared, t1); in twice() 226 SecP521R1Field.add(X1.x, Z1Squared, M); in twice()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
D | ECPoint.java | 787 ECFieldElement Z1Squared, U2, S2; in add() local 790 Z1Squared = Z1; U2 = X2; S2 = Y2; in add() 794 Z1Squared = Z1.square(); in add() 795 U2 = Z1Squared.multiply(X2); in add() 796 ECFieldElement Z1Cubed = Z1Squared.multiply(Z1); in add() 958 ECFieldElement Z1Squared = Z1IsOne ? Z1 : Z1.square(); in twice() local 959 M = three(X1.add(Z1Squared).multiply(X1.subtract(Z1Squared))); in twice() 972 ECFieldElement Z1Squared = Z1.square(); in twice() local 973 ECFieldElement Z1Pow4 = Z1Squared.square(); in twice()
|