Searched defs:trustAnchor (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/java/security/cert/
H A DPKIXCertPathBuilderResult.java69 * @param trustAnchor a <code>TrustAnchor</code> describing the CA that
75 * <code>trustAnchor</code> or <code>subjectPublicKey</code> parameters
79 TrustAnchor trustAnchor, PolicyNode policyTree,
82 super(trustAnchor, policyTree, subjectPublicKey);
78 PKIXCertPathBuilderResult(CertPath certPath, TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey) argument
H A DPKIXCertPathValidatorResult.java60 private TrustAnchor trustAnchor; field in class:PKIXCertPathValidatorResult
68 * @param trustAnchor a <code>TrustAnchor</code> describing the CA that
74 * <code>trustAnchor</code> parameters are <code>null</code>
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...]
/openjdk7/jdk/test/sun/security/provider/certpath/DisabledAlgorithms/
H A DCPValidatorTrustAnchor.java166 private static void validate(String trustAnchor) argument
168 selfSignedCertStr = trustAnchor;
/openjdk7/jdk/src/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 DForwardBuilder.java82 TrustAnchor trustAnchor; field in class:ForwardBuilder
843 this.trustAnchor = anchor;
856 this.trustAnchor = anchor;
909 this.trustAnchor = anchor;
H A DReverseState.java106 TrustAnchor trustAnchor; field in class:ReverseState
241 trustAnchor = anchor;
H A DSunCertPathBuilder.java86 private TrustAnchor trustAnchor; field in class:SunCertPathBuilder
210 trustAnchor = null;
245 cf.generateCertPath(certPathList), this.trustAnchor,
290 this.trustAnchor = anchor;
456 if (builder.trustAnchor.getTrustedCert() == null) {
484 new AlgorithmChecker(builder.trustAnchor));
489 if (builder.trustAnchor.getTrustedCert() == null) {
490 rootKey = builder.trustAnchor.getCAPublicKey();
542 trySetTrustAnchor(builder.trustAnchor);
614 if (builder.trustAnchor
[all...]

Completed in 36 milliseconds