OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:withCompression
(Results
1 - 6
of
6
) sorted by null
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
BCECPrivateKey.java
45
private boolean
withCompression
;
112
this.
withCompression
= key.
withCompression
;
307
EC5Util.convertPoint(curve, ecSpec.getGenerator(),
withCompression
),
351
return EC5Util.convertSpec(ecSpec,
withCompression
);
358
return EC5Util.convertSpec(ecSpec,
withCompression
);
394
withCompression
= !("UNCOMPRESSED".equalsIgnoreCase(style));
BCECPublicKey.java
44
private boolean
withCompression
;
57
this.
withCompression
= key.
withCompression
;
304
EC5Util.convertPoint(curve, ecSpec.getGenerator(),
withCompression
),
319
new X9ECPoint(curve.createPoint(this.getQ().getXCoord().toBigInteger(), this.getQ().getYCoord().toBigInteger(),
withCompression
)).toASN1Primitive();
324
new X9ECPoint(curve.createPoint(this.getQ().getAffineXCoord().toBigInteger(), this.getQ().getAffineYCoord().toBigInteger(),
withCompression
)).toASN1Primitive();
360
return EC5Util.convertSpec(ecSpec,
withCompression
);
394
return EC5Util.convertSpec(ecSpec,
withCompression
);
415
withCompression
= !("UNCOMPRESSED".equalsIgnoreCase(style));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCEECPrivateKey.java
50
private boolean
withCompression
;
107
this.
withCompression
= key.
withCompression
;
316
EC5Util.convertPoint(curve, ecSpec.getGenerator(),
withCompression
),
370
return EC5Util.convertSpec(ecSpec,
withCompression
);
377
return EC5Util.convertSpec(ecSpec,
withCompression
);
413
withCompression
= !("UNCOMPRESSED".equalsIgnoreCase(style));
468
this.
withCompression
= in.readBoolean();
480
out.writeBoolean(
withCompression
);
JCEECPublicKey.java
54
private boolean
withCompression
;
66
this.
withCompression
= key.
withCompression
;
350
// EC5Util.convertPoint(curve, ecSpec.getGenerator(),
withCompression
),
397
EC5Util.convertPoint(curve, ecSpec.getGenerator(),
withCompression
),
407
new X9ECPoint(curve.createPoint(this.getQ().getAffineXCoord().toBigInteger(), this.getQ().getAffineYCoord().toBigInteger(),
withCompression
)).toASN1Primitive();
443
return EC5Util.convertSpec(ecSpec,
withCompression
);
477
return EC5Util.convertSpec(ecSpec,
withCompression
);
498
withCompression
= !("UNCOMPRESSED".equalsIgnoreCase(style));
527
this.
withCompression
= in.readBoolean()
[
all
...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECPoint.java
48
protected boolean
withCompression
;
260
return this.getCurve().createRawPoint(getRawXCoord().multiply(sx), getRawYCoord().multiply(sy), this.
withCompression
);
270
return this.
withCompression
;
378
return getEncoded(this.
withCompression
);
482
* @param
withCompression
if true encode with point compression
486
public Fp(ECCurve curve, ECFieldElement x, ECFieldElement y, boolean
withCompression
)
495
this.
withCompression
=
withCompression
;
498
Fp(ECCurve curve, ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, boolean
withCompression
)
502
this.
withCompression
= withCompression
[
all
...]
/external/google-tv-pairing-protocol/java/jar/
bcprov-jdk15-143.jar
Completed in 100 milliseconds