Searched refs:certPathList (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DSunCertPathBuilder.java213 LinkedList<X509Certificate> certPathList =
217 buildForward(adjList, certPathList, searchAllCertStores);
219 buildReverse(adjList, certPathList);
241 // the certPathList
242 Collections.reverse(certPathList);
245 cf.generateCertPath(certPathList), this.trustAnchor,
267 LinkedList<X509Certificate> certPathList) throws Exception
311 certPathList);
328 + "certPathList.size: " + certPathList
266 buildReverse(List<List<Vertex>> adjacencyList, LinkedList<X509Certificate> certPathList) argument
335 buildForward(List<List<Vertex>> adjacencyList, LinkedList<X509Certificate> certPathList, boolean searchAllCertStores) argument
377 depthFirstSearchForward(X500Principal dN, ForwardState currentState, ForwardBuilder builder, List<List<Vertex>> adjList, LinkedList<X509Certificate> certPathList) argument
689 depthFirstSearchReverse(X500Principal dN, ReverseState currentState, ReverseBuilder builder, List<List<Vertex>> adjList, LinkedList<X509Certificate> certPathList) argument
[all...]
H A DReverseBuilder.java331 * @param certPathList the certPathList generated thus far
334 List<X509Certificate> certPathList)
364 if ((certPathList != null) && (!certPathList.isEmpty())) {
367 for (X509Certificate c : certPathList) {
526 /** Adds the certificate to the certPathList
529 * @param certPathList the certification path list
532 LinkedList<X509Certificate> certPathList) {
533 certPathList
333 verifyCert(X509Certificate cert, State currState, List<X509Certificate> certPathList) argument
531 addCertToPath(X509Certificate cert, LinkedList<X509Certificate> certPathList) argument
540 removeFinalCertFromPath(LinkedList<X509Certificate> certPathList) argument
[all...]
H A DBuilder.java99 * Verifies the cert against the currentState, using the certPathList
104 * @param certPathList the certPathList generated thus far
107 List<X509Certificate> certPathList) throws GeneralSecurityException;
120 * Adds the certificate to the certPathList
123 * @param certPathList the certification path list
126 LinkedList<X509Certificate> certPathList);
129 * Removes final certificate from the certPathList
131 * @param certPathList the certification path list
134 (LinkedList<X509Certificate> certPathList);
106 verifyCert(X509Certificate cert, State currentState, List<X509Certificate> certPathList) argument
125 addCertToPath(X509Certificate cert, LinkedList<X509Certificate> certPathList) argument
133 removeFinalCertFromPath(LinkedList<X509Certificate> certPathList) argument
[all...]
H A DForwardBuilder.java659 * @param certPathList the certPathList generated thus far
662 List<X509Certificate> certPathList) throws GeneralSecurityException
683 if (certPathList != null) {
685 for (X509Certificate cpListCert : certPathList) {
916 /** Adds the certificate to the certPathList
919 * @param certPathList the certification path list
922 LinkedList<X509Certificate> certPathList) {
923 certPathList.addFirst(cert);
926 /** Removes final certificate from the certPathList
661 verifyCert(X509Certificate cert, State currentState, List<X509Certificate> certPathList) argument
921 addCertToPath(X509Certificate cert, LinkedList<X509Certificate> certPathList) argument
930 removeFinalCertFromPath(LinkedList<X509Certificate> certPathList) argument
[all...]

Completed in 68 milliseconds