OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ECConstants
(Results
1 - 11
of
11
) sorted by null
/external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
ECConstants.java
5
public interface
ECConstants
Tnaf.java
14
private static final BigInteger MINUS_ONE =
ECConstants
.ONE.negate();
15
private static final BigInteger MINUS_TWO =
ECConstants
.TWO.negate();
16
private static final BigInteger MINUS_THREE =
ECConstants
.THREE.negate();
41
new ZTauElement(
ECConstants
.ONE,
ECConstants
.ZERO), null,
44
new ZTauElement(
ECConstants
.ONE, MINUS_ONE), null
60
new ZTauElement(
ECConstants
.ONE,
ECConstants
.ZERO), null,
61
new ZTauElement(MINUS_THREE,
ECConstants
.ONE), null,
62
new ZTauElement(MINUS_ONE,
ECConstants
.ONE), null
[
all
...]
SimpleBigDecimal.java
161
SimpleBigDecimal oneHalf = new SimpleBigDecimal(
ECConstants
.ONE, 1);
202
fract =
ECConstants
.ONE.shiftLeft(scale).subtract(fract);
205
if ((floorBigInt.signum() == -1) && (!(fract.equals(
ECConstants
.ZERO))))
207
floorBigInt = floorBigInt.add(
ECConstants
.ONE);
ECFieldElement.java
7
implements
ECConstants
117
// note: even though this class implements
ECConstants
don't be tempted to
123
ECFieldElement z = new Fp(q, x.modPow(q.shiftRight(2).add(
ECConstants
.ONE), q));
129
BigInteger qMinusOne = q.subtract(
ECConstants
.ONE);
132
if (!(x.modPow(legendreExponent, q).equals(
ECConstants
.ONE)))
138
BigInteger k = u.shiftLeft(1).add(
ECConstants
.ONE);
174
while (U.equals(
ECConstants
.ONE) || U.equals(qMinusOne));
178
// BigInteger qMinusOne = q.subtract(
ECConstants
.ONE);
179
// BigInteger legendreExponent = qMinusOne.shiftRight(1); //divide(
ECConstants
.TWO);
180
// if (!(x.modPow(legendreExponent, q).equals(
ECConstants
.ONE))
[
all
...]
ECCurve.java
474
((a.toBigInteger().equals(
ECConstants
.ZERO)) ||
475
(a.toBigInteger().equals(
ECConstants
.ONE))) &&
476
(b.toBigInteger().equals(
ECConstants
.ONE)));
524
if (xp.toBigInteger().equals(
ECConstants
.ZERO))
549
this.k3,
ECConstants
.ONE));
569
this.m, this.k1, this.k2, this.k3,
ECConstants
.ZERO);
571
if (beta.toBigInteger().equals(
ECConstants
.ZERO))
592
if (!w.toBigInteger().equals(
ECConstants
.ZERO))
598
while (gamma.toBigInteger().equals(
ECConstants
.ZERO));
IntArray.java
34
if (bigInt.equals(
ECConstants
.ZERO))
188
return
ECConstants
.ZERO;
ECPoint.java
399
if (!(this.getX().toBigInteger().equals(
ECConstants
.ZERO)))
557
ECFieldElement ONE = this.curve.fromBigInteger(
ECConstants
.ONE);
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/generators/
ECKeyPairGenerator.java
13
import org.bouncycastle.math.ec.
ECConstants
;
17
implements AsymmetricCipherKeyPairGenerator,
ECConstants
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/params/
ECDomainParameters.java
5
import org.bouncycastle.math.ec.
ECConstants
;
10
implements
ECConstants
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/signers/
ECDSASigner.java
13
import org.bouncycastle.math.ec.
ECConstants
;
20
implements
ECConstants
, DSA
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/sec/
SECNamedCurves.java
8
import org.bouncycastle.math.ec.
ECConstants
;
137
BigInteger a =
ECConstants
.ZERO;
215
BigInteger a =
ECConstants
.ZERO;
267
BigInteger a =
ECConstants
.ZERO;
319
BigInteger a =
ECConstants
.ZERO;
677
BigInteger a =
ECConstants
.ZERO;
731
BigInteger a =
ECConstants
.ZERO;
760
BigInteger a =
ECConstants
.ZERO;
[
all
...]
Completed in 245 milliseconds