Searched refs:Y1Squared (Results 1 – 9 of 9) sorted by relevance
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/ |
D | SecP192K1Point.java | 214 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()
|
D | SecP256K1Point.java | 214 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()
|
D | SecP224K1Point.java | 214 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()
|
D | SecP192R1Point.java | 215 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()
|
D | SecP256R1Point.java | 213 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()
|
D | SecP224R1Point.java | 213 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()
|
D | SecP384R1Point.java | 214 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()
|
D | SecP521R1Point.java | 208 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/ |
D | ECPoint.java | 949 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()
|