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

/libcore/luni/src/main/java/java/net/
H A DJarURLConnection.java107 public Certificate[] getCertificates() throws java.io.IOException { method in class:JarURLConnection
113 return jEntry.getCertificates();
/libcore/luni/src/main/java/java/security/
H A DCodeSource.java32 public final Certificate[] getCertificates() { return null; } method in class:CodeSource
/libcore/luni/src/main/java/java/security/cert/
H A DCertPath.java83 if (getCertificates().equals(o.getCertificates())) {
95 * path.getCertificates().hashCode();}
102 hash = hash*31 + getCertificates().hashCode();
116 sb.append(getCertificates().size());
119 for (Iterator<? extends Certificate> i=getCertificates().iterator(); i.hasNext(); n++) {
135 public abstract List<? extends Certificate> getCertificates(); method in class:CertPath
H A DCertStore.java238 public final Collection<? extends Certificate> getCertificates(CertSelector selector) method in class:CertStore
/libcore/luni/src/main/java/org/apache/harmony/security/pkcs7/
H A DSignedData.java69 public List<Certificate> getCertificates() { method in class:SignedData
/libcore/crypto/src/main/java/org/conscrypt/
H A DOpenSSLX509CertPath.java86 public List<? extends Certificate> getCertificates() { method in class:OpenSSLX509CertPath
/libcore/luni/src/main/java/java/util/jar/
H A DJarEntry.java100 public Certificate[] getCertificates() { method in class:JarEntry
108 return jarVerifier.getCertificates(getName());
140 signers = getCodeSigners(getCertificates());
H A DJarVerifier.java421 Certificate[] getCertificates(String name) { method in class:JarVerifier
/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/main/java/org/apache/harmony/security/provider/cert/
H A DX509CertPathImpl.java167 List<Certificate> certs = sd.getCertificates();
272 * @see java.security.cert.CertPath#getCertificates()
276 public List<X509Certificate> getCertificates() { method in class:X509CertPathImpl
/libcore/luni/src/test/java/tests/security/cert/
H A DCertPathValidatorExceptionTest.java270 * certPath.getCertificates().size() throws: IndexOutOfBoundsException
297 * certPath.getCertificates().size()
438 public List<Certificate> getCertificates() { method in class:CertPathValidatorExceptionTest.myCertPath
/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
1123 Collection<? extends X509Certificate> certs = getCertificates(f, CERTS_X509_DER);
1130 Collection<? extends X509Certificate> certs = getCertificates(f, CERTS_X509_PEM);
1137 Collection<? extends X509Certificate> certs = getCertificates(f, CERTS_PKCS7_PEM);
1149 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 342 milliseconds