Searched defs:anchor (Results 1 - 5 of 5) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DPKIXCertPathValidator.java114 for (TrustAnchor anchor : params.trustAnchors()) {
115 X509Certificate trustedCert = anchor.getTrustedCert();
117 // if this trust anchor is not worth trying,
128 debug.println("anchor.getTrustedCert()."
135 + "anchor.getTrustedCert() == null");
140 return validate(anchor, params);
147 // could not find a trust anchor that verified
158 private static PKIXCertPathValidatorResult validate(TrustAnchor anchor, argument
164 // check if anchor is untrusted
166 //X509Certificate anchorCert = anchor
[all...]
H A DAlgorithmChecker.java93 // If there is no "cacerts" keyword, then disable anchor checking
97 // If anchor checking enabled, this will be true if the trust anchor
106 * @param anchor the trust anchor selected to validate the target
109 public AlgorithmChecker(TrustAnchor anchor) { argument
110 this(anchor, certPathDefaultConstraints);
118 * path where the trust anchor is unknown, or a certificate list which may
119 * contain the trust anchor. This constructor is used by SunJSSE.
133 * @param anchor th
139 AlgorithmChecker(TrustAnchor anchor, AlgorithmConstraints constraints) argument
362 trySetTrustAnchor(TrustAnchor anchor) argument
[all...]
H A DBasicChecker.java74 * @param anchor the anchor selected to validate the target certificate
81 BasicChecker(TrustAnchor anchor, Date date, String sigProvider, argument
83 if (anchor.getTrustedCert() != null) {
84 this.trustedPubKey = anchor.getTrustedCert().getPublicKey();
85 this.caName = anchor.getTrustedCert().getSubjectX500Principal();
87 this.trustedPubKey = anchor.getCAPublicKey();
88 this.caName = anchor.getCA();
H A DSunCertPathBuilder.java101 * algorithm from a trusted anchor(s) to a target subject, which must both
112 * unable to build a complete certification path from the trusted anchor(s)
320 * if the trust anchor selected is specified as a trusted
360 TrustAnchor anchor = new TrustAnchor
364 basicChecker = new BasicChecker(anchor, buildParams.date(),
418 // able to set the trust anchor until now.
493 // Save the trust anchor
569 * Returns true if trust anchor certificate matches specified
572 private static boolean anchorIsTarget(TrustAnchor anchor, argument
575 X509Certificate anchorCert = anchor
[all...]
H A DRevocationChecker.java55 private TrustAnchor anchor; field in class:RevocationChecker
92 RevocationChecker(TrustAnchor anchor, ValidatorParams params) argument
96 init(anchor, params);
99 void init(TrustAnchor anchor, ValidatorParams params) argument
149 this.anchor = anchor;
268 for (TrustAnchor anchor : anchors) {
269 X509Certificate cert = anchor.getTrustedCert();
304 if (anchor != null) {
305 issuerCert = anchor
[all...]

Completed in 223 milliseconds