Searched refs:getCertificates (Results 1 - 25 of 42) sorted by relevance

12

/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCertPath.java106 * <code>CertPath.getCertificates</code>.
189 List<? extends Certificate> thisCertList = this.getCertificates();
190 List<? extends Certificate> otherCertList = otherCP.getCertificates();
200 * hashCode = 31*hashCode + path.getCertificates().hashCode();
211 hashCode = 31*hashCode + getCertificates().hashCode();
225 getCertificates().iterator();
228 + getCertificates().size() + ".\n");
274 public abstract List<? extends Certificate> getCertificates(); method in class:CertPath
H A DCertPathValidatorException.java145 * certPath.getCertificates().size())</code>
168 * certPath.getCertificates().size())</code>
182 (certPath != null && index >= certPath.getCertificates().size())) {
241 (certPath != null && index >= certPath.getCertificates().size())) {
H A DCertStore.java52 * {@link #getCertificates(CertSelector selector) getCertificates} and
149 public final Collection<? extends Certificate> getCertificates method in class:CertStore
/openjdk7/jdk/test/java/util/jar/JarFile/
H A DTurkCert.java47 if (je.getCertificates() == null)
H A DScanSignedJar.java52 if (entry.getCertificates() != null) {
/openjdk7/jdk/test/java/util/jar/JarEntry/
H A DGetMethodsReturnClones.java60 Certificate[] certs = je.getCertificates();
64 certs = je.getCertificates();
/openjdk7/jdk/src/share/classes/java/util/jar/
H A DJarEntry.java106 public Certificate[] getCertificates() { method in class:JarEntry
/openjdk7/jdk/src/share/classes/java/net/
H A DJarURLConnection.java307 public java.security.cert.Certificate[] getCertificates() method in class:JarURLConnection
311 return e != null ? e.getCertificates() : null;
/openjdk7/jdk/src/share/classes/java/security/
H A DCodeSigner.java159 sb.append("Signer: " + signerCertPath.getCertificates().get(0));
H A DTimestamp.java147 List<? extends Certificate> certs = signerCertPath.getCertificates();
H A DCodeSource.java184 public final java.security.cert.Certificate[] getCertificates() { method in class:CodeSource
194 signers[i].getSignerCertPath().getCertificates());
/openjdk7/jdk/test/java/util/jar/JarInputStream/
H A DScanSignedJar.java27 * @summary Confirm that JarEntry.getCertificates identifies signed entries.
37 * when JarEntry.getCertificates is used to extract the signer's certificates.
67 Certificate[] certificates = entry.getCertificates();
/openjdk7/jdk/test/sun/security/tools/jarsigner/
H A DJarSigningNonAscii.java109 Certificate[] certs = je.getCertificates();
/openjdk7/jdk/test/java/security/cert/CertPathBuilder/targetConstraints/
H A DBuildEEBasicConstraints.java80 List<? extends Certificate> certList = cp.getCertificates();
/openjdk7/jdk/src/share/classes/sun/misc/
H A DResource.java177 public java.security.cert.Certificate[] getCertificates() { method in class:Resource
/openjdk7/jdk/src/share/classes/com/sun/security/auth/
H A DPolicyFile.java535 certs = getCertificates(keyStore, ge.signedBy);
618 certs = getCertificates(keyStore, pe.signedBy);
713 Certificate[] getCertificates( method in class:PolicyFile
850 codesource == null ? null : codesource.getCertificates());
940 Certificate certs[] = codesource[0].getCertificates();
1160 if ((certs = cs.getCertificates()) == null)
1164 return cs.getCertificates();
1248 scs.getCertificates());
1256 cs.getCertificates());
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DX509CertPath.java226 X509Certificate[] certArray = pkcs7.getCertificates();
384 public List<X509Certificate> getCertificates() { method in class:X509CertPath
H A DOCSPChecker.java105 List<? extends Certificate> tmp = cp.getCertificates();
348 certStore.getCertificates(filter));
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/jar/
H A DURLJarFile.java272 public java.security.cert.Certificate[] getCertificates() { method in class:URLJarFile.URLJarFileEntry
273 Certificate[] certs = je.getCertificates();
/openjdk7/jdk/test/sun/security/provider/certpath/DisabledAlgorithms/
H A DCPBuilder.java429 result.getCertPath().getCertificates();
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/ldap/
H A DLDAPCertStore.java419 private Collection<X509Certificate> getCertificates(LDAPRequest request, method in class:LDAPCertStore
446 debug.println("LDAPCertStore.getCertificates() encountered "
626 certs.addAll(getCertificates(request, CA_CERT, xsel));
629 + "getCertificates(subject,CA_CERT,xsel),certs.size(): "
634 certs.addAll(getCertificates(request, USER_CERT, xsel));
637 + "getCertificates(subject,USER_CERT, xsel),certs.size(): "
672 certs.addAll(getCertificates(request, CA_CERT, xsel));
675 + "getCertificates(issuer,CA_CERT,xsel),certs.size(): "
/openjdk7/jdk/test/java/security/cert/CertPathBuilder/selfIssued/
H A DDisableRevocation.java256 if (!match(args[0], result.getCertPath().getCertificates().get(0))) {
H A DKeyUsageMatters.java299 if (!match(args[0], result.getCertPath().getCertificates().get(0))) {
H A DStatusLoopDependency.java305 if (!match(args[0], result.getCertPath().getCertificates().get(0))) {
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DPolicyFile.java772 certs = getCertificates(keyStore, ge.signedBy, newInfo);
851 certs = getCertificates(keyStore,
873 certs = getCertificates(keyStore,
1056 private Certificate[] getCertificates method in class:PolicyFile
1287 Certificate certs[] = cs.getCertificates();
1747 if ((certs = cs.getCertificates()) == null)
1751 return cs.getCertificates();
1831 cs.getCertificates());

Completed in 128 milliseconds

12