HomeSort by relevance Sort by last modified time
    Searched defs:ECPoint (Results 1 - 12 of 12) sorted by null

  /libcore/luni/src/test/java/tests/security/spec/
ECPointTest.java 28 import java.security.spec.ECPoint;
31 * Tests for <code>ECPoint</code> class fields and methods.
41 * Test #1 for <code>ECPoint(BigInteger, BigInteger)</code> constructor<br>
42 * Assertion: creates <code>ECPoint</code> instance<br>
47 new ECPoint(BigInteger.ZERO, BigInteger.ZERO);
48 new ECPoint(BigInteger.valueOf(-23456L), BigInteger.valueOf(-23456L));
49 new ECPoint(BigInteger.valueOf(123456L), BigInteger.valueOf(123456L));
50 new ECPoint(BigInteger.valueOf(-56L), BigInteger.valueOf(234L));
51 new ECPoint(BigInteger.valueOf(3456L), BigInteger.valueOf(-2344L));
55 * Test #2 for <code>ECPoint(BigInteger x, BigInteger y)</code> constructor<br
    [all...]
  /libcore/luni/src/main/java/java/security/spec/
ECPoint.java 25 public class ECPoint {
30 public static final ECPoint POINT_INFINITY = new ECPoint();
37 private ECPoint() {
50 public ECPoint(BigInteger affineX, BigInteger affineY) {
92 if (other instanceof ECPoint) {
94 ECPoint otherPoint = (ECPoint)other;
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
ECPointTest.java 25 import java.security.spec.ECPoint;
30 * Tests for <code>ECPoint</code> class fields and methods.
48 * Test #1 for <code>ECPoint(BigInteger, BigInteger)</code> constructor<br>
49 * Assertion: creates <code>ECPoint</code> instance<br>
54 new ECPoint(BigInteger.ZERO, BigInteger.ZERO);
55 new ECPoint(BigInteger.valueOf(-23456L), BigInteger.valueOf(-23456L));
56 new ECPoint(BigInteger.valueOf(123456L), BigInteger.valueOf(123456L));
57 new ECPoint(BigInteger.valueOf(-56L), BigInteger.valueOf(234L));
58 new ECPoint(BigInteger.valueOf(3456L), BigInteger.valueOf(-2344L));
62 * Test #2 for <code>ECPoint(BigInteger x, BigInteger y)</code> constructor<br>
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
ECPoint.java 10 public abstract class ECPoint
24 protected ECPoint(ECCurve curve, ECFieldElement x, ECFieldElement y)
64 if (!(other instanceof ECPoint))
69 ECPoint o = (ECPoint)other;
92 // * this <code>ECPoint</code>.
101 * to save the precomputation for this <code>ECPoint</code> to store the
113 public abstract ECPoint add(ECPoint b);
114 public abstract ECPoint subtract(ECPoint b)
    [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 163 milliseconds