OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ECPoint
(Results
1 - 16
of
16
) 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/bcprov/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
118
public abstract
ECPoint
add(
ECPoint
b);
119
public abstract
ECPoint
subtract(ECPoint b)
[
all
...]
/prebuilts/sdk/tools/lib/
signapk.jar
/prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar
/prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar
/prebuilts/sdk/10/
android.jar
/prebuilts/sdk/11/
android.jar
/prebuilts/sdk/13/
android.jar
/prebuilts/sdk/16/
android.jar
/prebuilts/sdk/5/
android.jar
/prebuilts/sdk/6/
android.jar
/prebuilts/sdk/7/
android.jar
/prebuilts/sdk/8/
android.jar
/prebuilts/sdk/9/
android.jar
Completed in 230 milliseconds