Home
last modified time | relevance | path

Searched refs:certPath (Results 1 – 25 of 1118) sorted by relevance

12345678910>>...45

/dports/net/pecl-zmq/zmq-1.1.3/tests/
H A D042-cert-save.phpt15 $certPath = BASE_CERT_DIR . '/cert';
18 $cert->save($certPath);
19 var_dump(is_file($certPath));
22 unlink($certPath);
23 unlink($certPath . '_secret');
29 $cert->savePublic($certPath);
30 var_dump(is_file($certPath));
32 unlink($certPath);
36 $cert->saveSecret($certPath);
37 var_dump(is_file($certPath));
[all …]
/dports/java/bouncycastle15/crypto-169/prov/src/main/jdk1.3/org/bouncycastle/jce/provider/
H A DPKIXCertPathValidatorSpi.java54 CertPath certPath, in engineValidate() argument
102 List certs = certPath.getCertificates(); in engineValidate()
107 throw new CertPathValidatorException("Certification path is empty.", null, certPath, 0); in engineValidate()
132 throw new CertPathValidatorException(e.getMessage(), e, certPath, certs.size() - 1); in engineValidate()
329 RFC3280CertPathUtilities.processCertF(certPath, index, validPolicyTree, explicitPolicy); in engineValidate()
345 certPath, index); in engineValidate()
348 RFC3280CertPathUtilities.prepareNextCertA(certPath, index); in engineValidate()
353 RFC3280CertPathUtilities.prepareNextCertG(certPath, index, nameConstraintValidator); in engineValidate()
370 RFC3280CertPathUtilities.prepareNextCertK(certPath, index); in engineValidate()
379 RFC3280CertPathUtilities.prepareNextCertN(certPath, index); in engineValidate()
[all …]
/dports/java/bouncycastle15/crypto-169/prov/src/main/java/org/bouncycastle/x509/
H A DCertPathReviewerException.java13 private CertPath certPath = null; field in CertPathReviewerException
28 CertPath certPath, in CertPathReviewerException() argument
32 if (certPath == null || index == -1) in CertPathReviewerException()
36 if (index < -1 || index >= certPath.getCertificates().size()) in CertPathReviewerException()
40 this.certPath = certPath; in CertPathReviewerException()
46 CertPath certPath, in CertPathReviewerException() argument
50 if (certPath == null || index == -1) in CertPathReviewerException()
54 if (index < -1 || index >= certPath.getCertificates().size()) in CertPathReviewerException()
58 this.certPath = certPath; in CertPathReviewerException()
64 return certPath; in getCertPath()
/dports/java/bouncycastle15/crypto-169/prov/src/main/java/org/bouncycastle/jce/provider/
H A DPKIXCertPathValidatorSpi.java58 CertPath certPath, in engineValidate() argument
104 List certs = certPath.getCertificates(); in engineValidate()
109 … throw new CertPathValidatorException("Certification path is empty.", null, certPath, -1); in engineValidate()
345 RFC3280CertPathUtilities.processCertF(certPath, index, validPolicyTree, explicitPolicy); in engineValidate()
360 certPath, index); in engineValidate()
363 RFC3280CertPathUtilities.prepareNextCertA(certPath, index); in engineValidate()
368 RFC3280CertPathUtilities.prepareNextCertG(certPath, index, nameConstraintValidator); in engineValidate()
385 RFC3280CertPathUtilities.prepareNextCertK(certPath, index); in engineValidate()
394 RFC3280CertPathUtilities.prepareNextCertN(certPath, index); in engineValidate()
451 explicitPolicy = RFC3280CertPathUtilities.wrapupCertB(certPath, index + 1, explicitPolicy); in engineValidate()
[all …]
H A DPKIXCertPathValidatorSpi_8.java65 CertPath certPath, in engineValidate() argument
111 List certs = certPath.getCertificates(); in engineValidate()
116 … throw new CertPathValidatorException("Certification path is empty.", null, certPath, -1); in engineValidate()
363 RFC3280CertPathUtilities.processCertF(certPath, index, validPolicyTree, explicitPolicy); in engineValidate()
378 certPath, index); in engineValidate()
381 RFC3280CertPathUtilities.prepareNextCertA(certPath, index); in engineValidate()
386 RFC3280CertPathUtilities.prepareNextCertG(certPath, index, nameConstraintValidator); in engineValidate()
403 RFC3280CertPathUtilities.prepareNextCertK(certPath, index); in engineValidate()
412 RFC3280CertPathUtilities.prepareNextCertN(certPath, index); in engineValidate()
469 explicitPolicy = RFC3280CertPathUtilities.wrapupCertB(certPath, index + 1, explicitPolicy); in engineValidate()
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/java/security/cert/
H A DCertPathValidatorException.java76 private CertPath certPath; field in CertPathValidatorException
150 CertPath certPath, int index) { in CertPathValidatorException() argument
151 this(msg, cause, certPath, index, BasicReason.UNSPECIFIED); in CertPathValidatorException()
176 CertPath certPath, int index, Reason reason) { in CertPathValidatorException() argument
178 if (certPath == null && index != -1) { in CertPathValidatorException()
182 (certPath != null && index >= certPath.getCertificates().size())) { in CertPathValidatorException()
188 this.certPath = certPath; in CertPathValidatorException()
201 return this.certPath; in getCertPath()
237 if (certPath == null && index != -1) { in readObject()
241 (certPath != null && index >= certPath.getCertificates().size())) { in readObject()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/java/security/cert/
H A DCertPathValidatorException.java76 private CertPath certPath; field in CertPathValidatorException
150 CertPath certPath, int index) { in CertPathValidatorException() argument
151 this(msg, cause, certPath, index, BasicReason.UNSPECIFIED); in CertPathValidatorException()
176 CertPath certPath, int index, Reason reason) { in CertPathValidatorException() argument
178 if (certPath == null && index != -1) { in CertPathValidatorException()
182 (certPath != null && index >= certPath.getCertificates().size())) { in CertPathValidatorException()
188 this.certPath = certPath; in CertPathValidatorException()
201 return this.certPath; in getCertPath()
237 if (certPath == null && index != -1) { in readObject()
241 (certPath != null && index >= certPath.getCertificates().size())) { in readObject()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.base/share/classes/java/security/cert/
H A DCertPathValidatorException.java76 private CertPath certPath; field in CertPathValidatorException
150 CertPath certPath, int index) { in CertPathValidatorException() argument
151 this(msg, cause, certPath, index, BasicReason.UNSPECIFIED); in CertPathValidatorException()
176 CertPath certPath, int index, Reason reason) { in CertPathValidatorException() argument
178 if (certPath == null && index != -1) { in CertPathValidatorException()
182 (certPath != null && index >= certPath.getCertificates().size())) { in CertPathValidatorException()
188 this.certPath = certPath; in CertPathValidatorException()
201 return this.certPath; in getCertPath()
237 if (certPath == null && index != -1) { in readObject()
241 (certPath != null && index >= certPath.getCertificates().size())) { in readObject()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/java/security/cert/
H A DCertPathValidatorException.java76 private CertPath certPath; field in CertPathValidatorException
150 CertPath certPath, int index) { in CertPathValidatorException() argument
151 this(msg, cause, certPath, index, BasicReason.UNSPECIFIED); in CertPathValidatorException()
176 CertPath certPath, int index, Reason reason) { in CertPathValidatorException() argument
178 if (certPath == null && index != -1) { in CertPathValidatorException()
182 (certPath != null && index >= certPath.getCertificates().size())) { in CertPathValidatorException()
188 this.certPath = certPath; in CertPathValidatorException()
201 return this.certPath; in getCertPath()
237 if (certPath == null && index != -1) { in readObject()
241 (certPath != null && index >= certPath.getCertificates().size())) { in readObject()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.base/share/classes/java/security/cert/
H A DCertPathValidatorException.java76 private CertPath certPath; field in CertPathValidatorException
150 CertPath certPath, int index) { in CertPathValidatorException() argument
151 this(msg, cause, certPath, index, BasicReason.UNSPECIFIED); in CertPathValidatorException()
176 CertPath certPath, int index, Reason reason) { in CertPathValidatorException() argument
178 if (certPath == null && index != -1) { in CertPathValidatorException()
182 (certPath != null && index >= certPath.getCertificates().size())) { in CertPathValidatorException()
188 this.certPath = certPath; in CertPathValidatorException()
201 return this.certPath; in getCertPath()
237 if (certPath == null && index != -1) { in readObject()
241 (certPath != null && index >= certPath.getCertificates().size())) { in readObject()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/java/security/cert/
H A DCertPathValidatorException.java76 private CertPath certPath; field in CertPathValidatorException
150 CertPath certPath, int index) { in CertPathValidatorException() argument
151 this(msg, cause, certPath, index, BasicReason.UNSPECIFIED); in CertPathValidatorException()
176 CertPath certPath, int index, Reason reason) { in CertPathValidatorException() argument
178 if (certPath == null && index != -1) { in CertPathValidatorException()
182 (certPath != null && index >= certPath.getCertificates().size())) { in CertPathValidatorException()
188 this.certPath = certPath; in CertPathValidatorException()
201 return this.certPath; in getCertPath()
237 if (certPath == null && index != -1) { in readObject()
241 (certPath != null && index >= certPath.getCertificates().size())) { in readObject()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.base/share/classes/java/security/cert/
H A DCertPathValidatorException.java77 private CertPath certPath; field in CertPathValidatorException
151 CertPath certPath, int index) { in CertPathValidatorException() argument
152 this(msg, cause, certPath, index, BasicReason.UNSPECIFIED); in CertPathValidatorException()
177 CertPath certPath, int index, Reason reason) { in CertPathValidatorException() argument
179 if (certPath == null && index != -1) { in CertPathValidatorException()
183 (certPath != null && index >= certPath.getCertificates().size())) { in CertPathValidatorException()
189 this.certPath = certPath; in CertPathValidatorException()
202 return this.certPath; in getCertPath()
239 if (certPath == null && index != -1) { in readObject()
243 (certPath != null && index >= certPath.getCertificates().size())) { in readObject()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.base/share/classes/java/security/cert/
H A DCertPathValidatorException.java77 private CertPath certPath; field in CertPathValidatorException
151 CertPath certPath, int index) { in CertPathValidatorException() argument
152 this(msg, cause, certPath, index, BasicReason.UNSPECIFIED); in CertPathValidatorException()
177 CertPath certPath, int index, Reason reason) { in CertPathValidatorException() argument
179 if (certPath == null && index != -1) { in CertPathValidatorException()
183 (certPath != null && index >= certPath.getCertificates().size())) { in CertPathValidatorException()
189 this.certPath = certPath; in CertPathValidatorException()
202 return this.certPath; in getCertPath()
246 if (certPath == null && index != -1) { in readObject()
250 (certPath != null && index >= certPath.getCertificates().size())) { in readObject()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.base/share/classes/java/security/cert/
H A DCertPathValidatorException.java77 private CertPath certPath; field in CertPathValidatorException
151 CertPath certPath, int index) { in CertPathValidatorException() argument
152 this(msg, cause, certPath, index, BasicReason.UNSPECIFIED); in CertPathValidatorException()
177 CertPath certPath, int index, Reason reason) { in CertPathValidatorException() argument
179 if (certPath == null && index != -1) { in CertPathValidatorException()
183 (certPath != null && index >= certPath.getCertificates().size())) { in CertPathValidatorException()
189 this.certPath = certPath; in CertPathValidatorException()
202 return this.certPath; in getCertPath()
239 if (certPath == null && index != -1) { in readObject()
243 (certPath != null && index >= certPath.getCertificates().size())) { in readObject()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.base/share/classes/java/security/cert/
H A DCertPathValidatorException.java77 private CertPath certPath; field in CertPathValidatorException
151 CertPath certPath, int index) { in CertPathValidatorException() argument
152 this(msg, cause, certPath, index, BasicReason.UNSPECIFIED); in CertPathValidatorException()
177 CertPath certPath, int index, Reason reason) { in CertPathValidatorException() argument
179 if (certPath == null && index != -1) { in CertPathValidatorException()
183 (certPath != null && index >= certPath.getCertificates().size())) { in CertPathValidatorException()
189 this.certPath = certPath; in CertPathValidatorException()
202 return this.certPath; in getCertPath()
239 if (certPath == null && index != -1) { in readObject()
243 (certPath != null && index >= certPath.getCertificates().size())) { in readObject()
/dports/java/icedtea-web/icedtea-web-1.6.2/netx/net/sourceforge/jnlp/tools/
H A DJarCertVerifier.java140 public boolean hasSigningIssues(CertPath certPath) { in hasSigningIssues() argument
141 return certs.get(certPath).hasSigningIssues(); in hasSigningIssues()
145 public List<String> getDetails(CertPath certPath) { in getDetails() argument
146 if (certPath != null) { in getDetails()
147 currentlyUsed = certPath; in getDetails()
261 for (CertPath certPath : certs.keySet()) in verifyJars()
262 checkTrustedCerts(certPath); in verifyJars()
346 jarSignCount.put(certPath, in verifyJarEntryCerts()
362 for (CertPath certPath : jarSignCount.keySet()) { in verifyJarEntryCerts()
434 CertInformation info = certs.get(certPath); in checkTrustedCerts()
[all …]
/dports/lang/gcc6-aux/gcc-6-20180516/libjava/classpath/java/security/cert/
H A DCertPathValidatorException.java75 private final CertPath certPath; field in CertPathValidatorException
96 certPath = null; in CertPathValidatorException()
136 CertPath certPath, int index) in CertPathValidatorException() argument
140 if (index < -1 || (certPath != null in CertPathValidatorException()
141 && index >= certPath.getCertificates().size())) in CertPathValidatorException()
143 if ((certPath == null) != (index == -1)) in CertPathValidatorException()
145 this.certPath = certPath; in CertPathValidatorException()
166 return certPath; in getCertPath()
/dports/lang/gcc48/gcc-4.8.5/libjava/classpath/java/security/cert/
H A DCertPathValidatorException.java75 private final CertPath certPath; field in CertPathValidatorException
96 certPath = null; in CertPathValidatorException()
136 CertPath certPath, int index) in CertPathValidatorException() argument
140 if (index < -1 || (certPath != null in CertPathValidatorException()
141 && index >= certPath.getCertificates().size())) in CertPathValidatorException()
143 if ((certPath == null) != (index == -1)) in CertPathValidatorException()
145 this.certPath = certPath; in CertPathValidatorException()
166 return certPath; in getCertPath()
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gcc/libjava/java/security/cert/
H A DCertPathValidatorException.java75 private final CertPath certPath; field in CertPathValidatorException
96 certPath = null; in CertPathValidatorException()
136 CertPath certPath, int index) in CertPathValidatorException() argument
140 if (index < -1 || (certPath != null in CertPathValidatorException()
141 && index >= certPath.getCertificates().size())) in CertPathValidatorException()
143 if ((certPath == null) != (index == -1)) in CertPathValidatorException()
145 this.certPath = certPath; in CertPathValidatorException()
166 return certPath; in getCertPath()
/dports/lang/gnat_util/gcc-6-20180516/libjava/classpath/java/security/cert/
H A DCertPathValidatorException.java75 private final CertPath certPath; field in CertPathValidatorException
96 certPath = null; in CertPathValidatorException()
136 CertPath certPath, int index) in CertPathValidatorException() argument
140 if (index < -1 || (certPath != null in CertPathValidatorException()
141 && index >= certPath.getCertificates().size())) in CertPathValidatorException()
143 if ((certPath == null) != (index == -1)) in CertPathValidatorException()
145 this.certPath = certPath; in CertPathValidatorException()
166 return certPath; in getCertPath()
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libjava/classpath/java/security/cert/
H A DCertPathValidatorException.java75 private final CertPath certPath; field in CertPathValidatorException
96 certPath = null; in CertPathValidatorException()
136 CertPath certPath, int index) in CertPathValidatorException() argument
140 if (index < -1 || (certPath != null in CertPathValidatorException()
141 && index >= certPath.getCertificates().size())) in CertPathValidatorException()
143 if ((certPath == null) != (index == -1)) in CertPathValidatorException()
145 this.certPath = certPath; in CertPathValidatorException()
166 return certPath; in getCertPath()
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gcc/libjava/java/security/cert/
H A DCertPathValidatorException.java75 private final CertPath certPath; field in CertPathValidatorException
96 certPath = null; in CertPathValidatorException()
136 CertPath certPath, int index) in CertPathValidatorException() argument
140 if (index < -1 || (certPath != null in CertPathValidatorException()
141 && index >= certPath.getCertificates().size())) in CertPathValidatorException()
143 if ((certPath == null) != (index == -1)) in CertPathValidatorException()
145 this.certPath = certPath; in CertPathValidatorException()
166 return certPath; in getCertPath()
/dports/devel/mingw32-gcc/gcc-4.8.1/libjava/classpath/java/security/cert/
H A DCertPathValidatorException.java75 private final CertPath certPath; field in CertPathValidatorException
96 certPath = null; in CertPathValidatorException()
136 CertPath certPath, int index) in CertPathValidatorException() argument
140 if (index < -1 || (certPath != null in CertPathValidatorException()
141 && index >= certPath.getCertificates().size())) in CertPathValidatorException()
143 if ((certPath == null) != (index == -1)) in CertPathValidatorException()
145 this.certPath = certPath; in CertPathValidatorException()
166 return certPath; in getCertPath()
/dports/java/sablevm-classpath/sablevm-classpath-1.13/java/security/cert/
H A DCertPathValidatorException.java75 private final CertPath certPath; field in CertPathValidatorException
96 certPath = null; in CertPathValidatorException()
136 CertPath certPath, int index) in CertPathValidatorException() argument
140 if (index < -1 || (certPath != null in CertPathValidatorException()
141 && index >= certPath.getCertificates().size())) in CertPathValidatorException()
143 if ((certPath == null) != (index == -1)) in CertPathValidatorException()
145 this.certPath = certPath; in CertPathValidatorException()
166 return certPath; in getCertPath()
/dports/java/bouncycastle15/crypto-169/prov/src/main/jdk1.1/org/bouncycastle/jce/provider/
H A DRFC3280CertPathUtilities.java780 CertPath certPath, in prepareCertB() argument
967 CertPath certPath, in prepareNextCertA() argument
1025 CertPath certPath, in processCertF() argument
1042 CertPath certPath, in processCertE() argument
1071 CertPath certPath, in processCertBC() argument
1175 CertPath certPath, in processCertD() argument
1378 CertPath certPath, in processCertA() argument
1458 CertPath certPath, in prepareNextCertI1() argument
1512 CertPath certPath, in prepareNextCertI2() argument
1566 CertPath certPath, in prepareNextCertG() argument
[all …]

12345678910>>...45