Home | History | Annotate | Download | only in certpath

Lines Matching refs:cert

32 import java.security.cert.*;
33 import java.security.cert.CertPathValidatorException.BasicReason;
34 import java.security.cert.PKIXReason;
180 // as the first cert in the certpath - i.e. reverse
272 * For each cert in the collection, verify anything
275 * recursively for each good cert.
284 * the cert eventually fails to lead to the target and
285 * the next matching cert is tried.
288 X509Certificate cert = vertex.getCertificate();
291 builder.verifyCert(cert, nextState, cpList);
304 * If cert completes the path,
308 * else if cert does not complete the path,
311 if (builder.isPathCompleted(cert)) {
321 * public key rather than a trusted cert, then verify this
322 * cert (which is signed by the trusted public key), but
326 appendedCerts.add(0, cert);
351 PublicKey rootKey = cert.getPublicKey();
361 (cert.getSubjectX500Principal(), rootKey, null);
432 // If the target cert itself is revoked, we
488 * trusted certs, then add this cert (which is signed by
492 builder.addCertToPath(cert, cpList);
514 builder.addCertToPath(cert, cpList);
518 nextState.updateState(cert);
521 * Append an entry for cert in adjacency list and
528 depthFirstSearchForward(cert.getIssuerX500Principal(), nextState,
540 * This means we have to backtrack to the previous cert in
560 for (X509Certificate cert : certs) {
561 Vertex v = new Vertex(cert);