HomeSort by relevance Sort by last modified time
    Searched defs:certpath (Results 1 - 25 of 34) sorted by null

1 2

  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
State.java 26 package sun.security.provider.certpath;
SunCertPathBuilderException.java 26 package sun.security.provider.certpath;
SunCertPathBuilderResult.java 26 package sun.security.provider.certpath;
30 import java.security.cert.CertPath;
52 private static final Debug debug = Debug.getInstance("certpath");
59 * @param certPath the validated <code>CertPath</code>
67 SunCertPathBuilderResult(CertPath certPath,
71 super(certPath, trustAnchor, policyTree, subjectPublicKey);
CertPathHelper.java 26 package sun.security.provider.certpath;
AdjacencyList.java 25 package sun.security.provider.certpath;
79 * @see sun.security.provider.certpath.BuildStep
80 * @see sun.security.provider.certpath.Vertex
CertStoreHelper.java 26 package sun.security.provider.certpath;
58 "sun.security.provider.certpath.ldap.LDAPCertStoreHelper");
61 "sun.security.provider.certpath.ssl.SSLServerCertStoreHelper");
PKIXMasterCertPathValidator.java 26 package sun.security.provider.certpath;
34 import java.security.cert.CertPath;
42 * and is used to verify the certificates in a <code>CertPath</code> by
50 private static final Debug debug = Debug.getInstance("certpath");
59 * @param cpOriginal the original X509 CertPath passed in by the user
60 * @param reversedCertList the reversed X509 CertPath (as a List)
64 static void validate(CertPath cpOriginal,
70 // we need to return the original certPath when we throw an exception.
AdaptableX509CertSelector.java 26 package sun.security.provider.certpath;
52 private static final Debug debug = Debug.getInstance("certpath");
BuildStep.java 26 package sun.security.provider.certpath;
37 * @see sun.security.provider.certpath.Vertex
KeyChecker.java 26 package sun.security.provider.certpath;
47 private static final Debug debug = Debug.getInstance("certpath");
AlgorithmChecker.java 26 package sun.security.provider.certpath;
73 private static final Debug debug = Debug.getInstance("certpath");
104 * "jdk.certpath.disabledAlgorithms".
259 // Check against DisabledAlgorithmConstraints certpath constraints.
BasicChecker.java 26 package sun.security.provider.certpath;
62 private static final Debug debug = Debug.getInstance("certpath");
CertId.java 26 package sun.security.provider.certpath;
ConstraintsChecker.java 26 package sun.security.provider.certpath;
55 private static final Debug debug = Debug.getInstance("certpath");
ForwardState.java 26 package sun.security.provider.certpath;
56 private static final Debug debug = Debug.getInstance("certpath");
OCSPRequest.java 26 package sun.security.provider.certpath;
79 private static final Debug debug = Debug.getInstance("certpath");
PKIXCertPathValidator.java 26 package sun.security.provider.certpath;
33 import sun.security.provider.certpath.PKIX.ValidatorParams;
48 private static final Debug debug = Debug.getInstance("certpath");
74 public CertPathValidatorResult engineValidate(CertPath cp,
88 // Retrieve the first certificate in the certpath
222 PKIXMasterCertPathValidator.validate(params.certPath(),
Vertex.java 26 package sun.security.provider.certpath;
51 private static final Debug debug = Debug.getInstance("certpath");
Builder.java 26 package sun.security.provider.certpath;
35 import sun.security.provider.certpath.PKIX.BuilderParams;
56 private static final Debug debug = Debug.getInstance("certpath");
OCSP.java 25 package sun.security.provider.certpath;
45 import static sun.security.provider.certpath.OCSPResponse.*;
71 private static final Debug debug = Debug.getInstance("certpath");
PKIX.java 25 package sun.security.provider.certpath;
42 private static final Debug debug = Debug.getInstance("certpath");
51 static ValidatorParams checkParams(CertPath cp, CertPathParameters params)
78 private CertPath certPath;
89 ValidatorParams(CertPath cp, PKIXParameters params)
95 + "CertPath type specified, must be X.509 or X509");
97 this.certPath = cp;
115 CertPath certPath() {
    [all...]
PolicyNodeImpl.java 26 package sun.security.provider.certpath;
RevocationChecker.java 26 package sun.security.provider.certpath;
44 import static sun.security.provider.certpath.OCSP.*;
45 import static sun.security.provider.certpath.PKIX.*;
53 private static final Debug debug = Debug.getInstance("certpath");
310 if (params != null && params.certPath() != null) {
311 certIndex = params.certPath().getCertificates().size() - 1;
430 e.getMessage(), e.getCause(), params.certPath(), certIndex,
748 params.certPath(), -1,
    [all...]
URICertStore.java 26 package sun.security.provider.certpath;
91 private static final Debug debug = Debug.getInstance("certpath");
X509CertPath.java 26 package sun.security.provider.certpath;
36 import java.security.cert.CertPath;
49 * A {@link java.security.cert.CertPath CertPath} (certification path)
53 * By convention, X.509 <code>CertPath</code>s are stored from target
56 * one. However, unvalidated X.509 <code>CertPath</code>s may not follow
64 public class X509CertPath extends CertPath {
169 * Parse a PKIPATH format CertPath from an InputStream. Return an
210 * Parse a PKCS#7 format CertPath from an InputStream. Return an
282 * Encode the CertPath using PKIPATH format
    [all...]

Completed in 170 milliseconds

1 2