OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:withCompression
(Results
1 - 3
of
3
) sorted by null
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCEECPrivateKey.java
48
private boolean
withCompression
;
105
this.
withCompression
= key.
withCompression
;
311
EC5Util.convertPoint(curve, ecSpec.getGenerator(),
withCompression
),
358
return EC5Util.convertSpec(ecSpec,
withCompression
);
365
return EC5Util.convertSpec(ecSpec,
withCompression
);
401
withCompression
= !("UNCOMPRESSED".equalsIgnoreCase(style));
456
this.
withCompression
= in.readBoolean();
468
out.writeBoolean(
withCompression
);
JCEECPublicKey.java
54
private boolean
withCompression
;
66
this.
withCompression
= key.
withCompression
;
351
// EC5Util.convertPoint(curve, ecSpec.getGenerator(),
withCompression
),
391
EC5Util.convertPoint(curve, ecSpec.getGenerator(),
withCompression
),
401
new X9ECPoint(curve.createPoint(this.getQ().getX().toBigInteger(), this.getQ().getY().toBigInteger(),
withCompression
)).getDERObject();
437
return EC5Util.convertSpec(ecSpec,
withCompression
);
471
return EC5Util.convertSpec(ecSpec,
withCompression
);
492
withCompression
= !("UNCOMPRESSED".equalsIgnoreCase(style));
521
this.
withCompression
= in.readBoolean()
[
all
...]
/external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
ECPoint.java
16
protected boolean
withCompression
;
53
return
withCompression
;
179
* @param
withCompression
if true encode with point compression
181
public Fp(ECCurve curve, ECFieldElement x, ECFieldElement y, boolean
withCompression
)
190
this.
withCompression
=
withCompression
;
205
if (
withCompression
)
297
return new ECPoint.Fp(curve, x3, y3, this.
withCompression
);
314
return new ECPoint.Fp(curve, this.x, this.y.negate(), this.
withCompression
);
348
* @param
withCompression
true if encode with point compression
[
all
...]
Completed in 293 milliseconds