Home
last modified time | relevance | path

Searched refs:Y1Squared (Results 1 – 9 of 9) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
DSecP192K1Point.java214 int[] Y1Squared = Nat192.create(); in twice() local
215 SecP192K1Field.square(Y1.x, Y1Squared); in twice()
218 SecP192K1Field.square(Y1Squared, T); in twice()
225 int[] S = Y1Squared; in twice()
226 SecP192K1Field.multiply(Y1Squared, X1.x, S); in twice()
DSecP256K1Point.java214 int[] Y1Squared = Nat256.create(); in twice() local
215 SecP256K1Field.square(Y1.x, Y1Squared); in twice()
218 SecP256K1Field.square(Y1Squared, T); in twice()
225 int[] S = Y1Squared; in twice()
226 SecP256K1Field.multiply(Y1Squared, X1.x, S); in twice()
DSecP224K1Point.java214 int[] Y1Squared = Nat224.create(); in twice() local
215 SecP224K1Field.square(Y1.x, Y1Squared); in twice()
218 SecP224K1Field.square(Y1Squared, T); in twice()
225 int[] S = Y1Squared; in twice()
226 SecP224K1Field.multiply(Y1Squared, X1.x, S); in twice()
DSecP192R1Point.java215 int[] Y1Squared = Nat192.create(); in twice() local
216 SecP192R1Field.square(Y1.x, Y1Squared); in twice()
219 SecP192R1Field.square(Y1Squared, T); in twice()
238 int[] S = Y1Squared; in twice()
239 SecP192R1Field.multiply(Y1Squared, X1.x, S); in twice()
DSecP256R1Point.java213 int[] Y1Squared = Nat256.create(); in twice() local
214 SecP256R1Field.square(Y1.x, Y1Squared); in twice()
217 SecP256R1Field.square(Y1Squared, T); in twice()
236 int[] S = Y1Squared; in twice()
237 SecP256R1Field.multiply(Y1Squared, X1.x, S); in twice()
DSecP224R1Point.java213 int[] Y1Squared = Nat224.create(); in twice() local
214 SecP224R1Field.square(Y1.x, Y1Squared); in twice()
217 SecP224R1Field.square(Y1Squared, T); in twice()
236 int[] S = Y1Squared; in twice()
237 SecP224R1Field.multiply(Y1Squared, X1.x, S); in twice()
DSecP384R1Point.java214 int[] Y1Squared = Nat.create(12); in twice() local
215 SecP384R1Field.square(Y1.x, Y1Squared); in twice()
218 SecP384R1Field.square(Y1Squared, T); in twice()
237 int[] S = Y1Squared; in twice()
238 SecP384R1Field.multiply(Y1Squared, X1.x, S); in twice()
DSecP521R1Point.java208 int[] Y1Squared = Nat.create(17); in twice() local
209 SecP521R1Field.square(Y1.x, Y1Squared); in twice()
212 SecP521R1Field.square(Y1Squared, T); in twice()
231 int[] S = Y1Squared; in twice()
232 SecP521R1Field.multiply(Y1Squared, X1.x, S); in twice()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
DECPoint.java949 ECFieldElement Y1Squared = Y1.square(); in twice() local
950 ECFieldElement T = Y1Squared.square(); in twice()
960 S = four(Y1Squared.multiply(X1)); in twice()
984 S = four(X1.multiply(Y1Squared)); in twice()