Searched defs:point (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/ec/
H A DECParameters.java57 * base ECPoint, -- specifies the base point P
59 * order INTEGER, -- the order n of the base point
88 throw new IOException("Only uncompressed point format supported");
102 public static byte[] encodePoint(ECPoint point, EllipticCurve curve) { argument
105 byte[] xb = trimZeroes(point.getAffineX().toByteArray());
106 byte[] yb = trimZeroes(point.getAffineY().toByteArray());
205 // It is left as a starting point for a complete parsing implementation.
222 ECPoint point = parsePoint(in, curve);
239 return new ECParameterSpec(curve, point, order, cofactor);
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DDistributionPointFetcher.java121 DistributionPoint point = t.next();
123 point, reasonsMask, signFlag, prevKey, prevCert, provider,
137 * Download CRLs from the given distribution point, verify and return them.
146 X509CertImpl certImpl, DistributionPoint point, boolean[] reasonsMask,
153 GeneralNames fullName = point.getFullName();
156 RDN relativeName = point.getRelativeName();
161 GeneralNames crlIssuers = point.getCRLIssuer();
210 if (selector.match(crl) && verifyCRL(certImpl, point, crl,
302 * @param point one of the distribution points of the certificate
317 static boolean verifyCRL(X509CertImpl certImpl, DistributionPoint point, argument
145 getCRLs(X509CRLSelector selector, X509CertImpl certImpl, DistributionPoint point, boolean[] reasonsMask, boolean signFlag, PublicKey prevKey, X509Certificate prevCert, String provider, List<CertStore> certStores, Set<TrustAnchor> trustAnchors, Date validity) argument
[all...]
/libcore/ojluni/src/main/java/sun/security/ssl/
H A DJsseJce.java392 static byte[] encodePoint(ECPoint point, EllipticCurve curve) { argument
393 return ECParameters.encodePoint(point, curve);

Completed in 80 milliseconds