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

/libcore/ojluni/src/main/java/java/net/
H A DJarURLConnection.java303 public java.security.cert.Certificate[] getCertificates() method in class:JarURLConnection
307 return e != null ? e.getCertificates() : null;
/libcore/ojluni/src/main/java/java/security/
H A DCodeSource.java67 public final java.security.cert.Certificate[] getCertificates() { return null; } method in class:CodeSource
/libcore/ojluni/src/main/java/java/util/jar/
H A DJarEntry.java107 public Certificate[] getCertificates() { method in class:JarEntry
H A DJarFile.java288 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}.
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.java276 public java.security.cert.Certificate[] getCertificates() { method in class:URLJarFile.URLJarFileEntry
277 Certificate[] certs = je.getCertificates();
/libcore/ojluni/src/main/java/sun/security/pkcs/
H A DPKCS7.java692 public X509Certificate[] getCertificates() { method in class:PKCS7
/libcore/luni/src/test/java/libcore/java/security/cert/
H A DX509CertificateTest.java159 private final Collection<? extends X509Certificate> getCertificates(CertificateFactory f, String name) method in class:X509CertificateTest
1150 Collection<? extends X509Certificate> certs = getCertificates(f, CERTS_X509_DER);
1157 Collection<? extends X509Certificate> certs = getCertificates(f, CERTS_X509_PEM);
1164 Collection<? extends X509Certificate> certs = getCertificates(f, CERTS_PKCS7_PEM);
1171 Collection<? extends X509Certificate> certs = getCertificates(f, CERTS_PKCS7_DER);
/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 196 milliseconds