Searched defs:getCertificates (Results 1 - 15 of 15) sorted by relevance

/libcore/ojluni/src/main/java/java/net/
H A DJarURLConnection.java307 public java.security.cert.Certificate[] getCertificates() method in class:JarURLConnection
311 return e != null ? e.getCertificates() : null;
/libcore/ojluni/src/main/java/java/security/
H A DCodeSource.java50 public final java.security.cert.Certificate[] getCertificates() { return null; } method in class:CodeSource
/libcore/ojluni/src/main/java/java/util/jar/
H A DJarEntry.java106 public Certificate[] getCertificates() { method in class:JarEntry
H A DJarFile.java269 public Certificate[] getCertificates() { method in class:JarFile.JarFileEntry
/libcore/ojluni/src/main/java/sun/misc/
H A DResource.java177 public java.security.cert.Certificate[] getCertificates() { method in class:Resource
/libcore/ojluni/src/main/java/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 DCertStore.java52 * {@link #getCertificates(CertSelector selector) getCertificates} and
158 public final Collection<? extends Certificate> getCertificates method in class:CertStore
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DX509CertPath.java233 X509Certificate[] certArray = pkcs7.getCertificates();
394 public List<X509Certificate> getCertificates() { method in class:X509CertPath
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
H A DMyCertPath.java69 * @see java.security.cert.CertPath#getCertificates()
71 public List<MyCertificate> getCertificates() { method in class:MyCertPath
/libcore/luni/src/test/java/tests/security/cert/
H A DCertPathValidatorExceptionTest.java275 * certPath.getCertificates().size() throws: IndexOutOfBoundsException
302 * certPath.getCertificates().size()
448 doReturn(certList).when(certPath).getCertificates();
464 public List<Certificate> getCertificates() { method in class:CertPathValidatorExceptionTest.myCertPath
/libcore/ojluni/src/main/java/sun/net/www/protocol/jar/
H A DURLJarFile.java249 public java.security.cert.Certificate[] getCertificates() { method in class:URLJarFile.URLJarFileEntry
250 Certificate[] certs = je.getCertificates();
/libcore/ojluni/src/main/java/sun/security/pkcs/
H A DPKCS7.java650 public X509Certificate[] getCertificates() { method in class:PKCS7
/libcore/luni/src/test/java/libcore/java/security/cert/
H A DX509CertificateTest.java137 private final Collection<? extends X509Certificate> getCertificates(CertificateFactory f, String name) method in class:X509CertificateTest
1128 Collection<? extends X509Certificate> certs = getCertificates(f, CERTS_X509_DER);
1135 Collection<? extends X509Certificate> certs = getCertificates(f, CERTS_X509_PEM);
1142 Collection<? extends X509Certificate> certs = getCertificates(f, CERTS_PKCS7_PEM);
1154 Collection<? extends X509Certificate> certs = getCertificates(f, CERTS_PKCS7_DER);
/libcore/ojluni/src/main/java/sun/security/provider/certpath/ldap/
H A DLDAPCertStore.java440 private Collection<X509Certificate> getCertificates(LDAPRequest request, method in class:LDAPCertStore
467 debug.println("LDAPCertStore.getCertificates() encountered "
645 certs.addAll(getCertificates(request, CA_CERT, xsel));
648 + "getCertificates(subject,CA_CERT,xsel),certs.size(): "
653 certs.addAll(getCertificates(request, USER_CERT, xsel));
656 + "getCertificates(subject,USER_CERT, xsel),certs.size(): "
691 certs.addAll(getCertificates(request, CA_CERT, xsel));
694 + "getCertificates(issuer,CA_CERT,xsel),certs.size(): "
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DTestCertUtils.java182 * @see java.security.cert.CertPath#getCertificates()
184 public List<Certificate> getCertificates() { method in class:TestCertUtils.TestCertPath

Completed in 948 milliseconds