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");
  /external/openssh/
ssh-add.c 112 char *certpath = NULL, *comment = NULL; local
132 xasprintf(&certpath, "%s-cert.pub", filename);
133 if ((r = sshkey_load_public(certpath, &cert, &comment)) != 0) {
136 certpath, ssh_err(r));
142 certpath, filename);
145 fprintf(stderr, "Identity removed: %s (%s)\n", certpath,
150 certpath, ssh_err(r));
155 free(certpath);
185 char msg[1024], *certpath = NULL; local
285 xasprintf(&certpath, "%s-cert.pub", filename)
    [all...]

Completed in 2923 milliseconds

1 2