Searched refs:ecSpec (Results 1 - 5 of 5) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
H A DBCECPublicKey.java45 private transient ECParameterSpec ecSpec; field in class:BCECPublicKey
54 this.ecSpec = key.ecSpec;
65 this.ecSpec = spec.getParams();
66 this.q = EC5Util.convertPoint(ecSpec, spec.getW(), false);
83 this.ecSpec = EC5Util.convertSpec(ellipticCurve, spec.getParams());
93 this.ecSpec = null;
114 this.ecSpec = createSpec(ellipticCurve, dp);
118 this.ecSpec = spec;
139 this.ecSpec
[all...]
H A DBCECPrivateKey.java51 private transient ECParameterSpec ecSpec; field in class:BCECPrivateKey
67 this.ecSpec = key.getParams();
86 this.ecSpec = EC5Util.convertSpec(ellipticCurve, spec.getParams());
90 this.ecSpec = null;
104 this.ecSpec = spec.getParams();
114 this.ecSpec = key.ecSpec;
138 this.ecSpec = new ECParameterSpec(
148 this.ecSpec = spec;
171 this.ecSpec
[all...]
H A DEC5Util.java95 ECParameterSpec ecSpec,
98 ECCurve curve = convertCurve(ecSpec.getCurve());
102 convertPoint(curve, ecSpec.getGenerator(), withCompression),
103 ecSpec.getOrder(),
104 BigInteger.valueOf(ecSpec.getCofactor()),
105 ecSpec.getCurve().getSeed());
109 ECParameterSpec ecSpec,
113 return convertPoint(convertCurve(ecSpec.getCurve()), point, withCompression);
94 convertSpec( ECParameterSpec ecSpec, boolean withCompression) argument
108 convertPoint( ECParameterSpec ecSpec, ECPoint point, boolean withCompression) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCEECPublicKey.java53 private ECParameterSpec ecSpec; field in class:JCEECPublicKey
65 this.ecSpec = key.ecSpec;
77 this.ecSpec = spec.getParams();
78 this.q = EC5Util.convertPoint(ecSpec, spec.getW(), false);
93 this.ecSpec = EC5Util.convertSpec(ellipticCurve, spec.getParams());
103 this.ecSpec = null;
121 this.ecSpec = createSpec(ellipticCurve, dp);
125 this.ecSpec = spec;
143 this.ecSpec
[all...]
H A DJCEECPrivateKey.java49 private ECParameterSpec ecSpec; field in class:JCEECPrivateKey
65 this.ecSpec = key.getParams();
82 this.ecSpec = EC5Util.convertSpec(ellipticCurve, spec.getParams());
86 this.ecSpec = null;
97 this.ecSpec = spec.getParams();
106 this.ecSpec = key.ecSpec;
127 this.ecSpec = new ECParameterSpec(
137 this.ecSpec = spec;
158 this.ecSpec
[all...]

Completed in 111 milliseconds