Home | History | Annotate | Download | only in spec

Lines Matching refs:valueOf

37         curve = new EllipticCurve(new ECFieldF2m(2), BigInteger.valueOf(1),
38 BigInteger.valueOf(1));
39 ecpoint = new ECPoint(BigInteger.valueOf(1), BigInteger.valueOf(1));
40 ecps = new ECParameterSpec(curve, ecpoint, BigInteger.valueOf(1), 1);
67 assertEquals("wrong order was reteurned", BigInteger.valueOf(1), ecps
72 new ECParameterSpec(null, ecpoint, BigInteger.valueOf(1), 1);
80 new ECParameterSpec(curve, null, BigInteger.valueOf(1), 1);
96 new ECParameterSpec(curve, ecpoint, BigInteger.valueOf(-1), 1);
104 new ECParameterSpec(curve, ecpoint, BigInteger.valueOf(1), -1);
130 assertEquals("wrong order was reteurned", BigInteger.valueOf(1), ecps