Searched refs:trustAnchor (Results 1 - 6 of 6) sorted by relevance

/openjdk9/jdk/src/java.base/share/classes/java/security/cert/
H A DPKIXCertPathValidatorResult.java60 private TrustAnchor trustAnchor; field in class:PKIXCertPathValidatorResult
68 * @param trustAnchor a {@code TrustAnchor} describing the CA that
74 * {@code trustAnchor} parameters are {@code null}
76 public PKIXCertPathValidatorResult(TrustAnchor trustAnchor, argument
81 if (trustAnchor == null)
82 throw new NullPointerException("trustAnchor must be non-null");
83 this.trustAnchor = trustAnchor;
95 return trustAnchor;
153 sb.append(" Trust Anchor: " + trustAnchor
[all...]
H A DPKIXCertPathBuilderResult.java69 * @param trustAnchor a {@code TrustAnchor} describing the CA that
75 * {@code trustAnchor} or {@code subjectPublicKey} parameters
79 TrustAnchor trustAnchor, PolicyNode policyTree,
82 super(trustAnchor, policyTree, subjectPublicKey);
78 PKIXCertPathBuilderResult(CertPath certPath, TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey) argument
/openjdk9/jdk/src/java.base/share/classes/sun/security/provider/certpath/
H A DSunCertPathBuilderResult.java60 * @param trustAnchor a <code>TrustAnchor</code> describing the CA that
68 TrustAnchor trustAnchor, PolicyNode policyTree,
71 super(certPath, trustAnchor, policyTree, subjectPublicKey);
67 SunCertPathBuilderResult(CertPath certPath, TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey, AdjacencyList adjList) argument
H A DSunCertPathBuilder.java78 private TrustAnchor trustAnchor; field in class:SunCertPathBuilder
155 trustAnchor = null;
185 cf.generateCertPath(certPathList), trustAnchor,
324 if (builder.trustAnchor.getTrustedCert() == null) {
346 checkers.add(new AlgorithmChecker(builder.trustAnchor,
352 if (builder.trustAnchor.getTrustedCert() == null) {
353 rootKey = builder.trustAnchor.getCAPublicKey();
383 ((RevocationChecker)ckr).init(builder.trustAnchor,
391 checkers.add(new RevocationChecker(builder.trustAnchor,
421 trySetTrustAnchor(builder.trustAnchor);
[all...]
H A DForwardBuilder.java72 TrustAnchor trustAnchor; field in class:ForwardBuilder
838 this.trustAnchor = anchor;
851 this.trustAnchor = anchor;
893 this.trustAnchor = anchor;
/openjdk9/jdk/test/sun/security/provider/certpath/DisabledAlgorithms/
H A DCPValidatorTrustAnchor.java166 private static void validate(String trustAnchor) argument
168 selfSignedCertStr = trustAnchor;

Completed in 47 milliseconds