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

12

/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 DCertPathValidatorException.java71 if ((certPath != null) && ((index < -1) || (index >= certPath.getCertificates().size()))) {
H A DCertStore.java238 public final Collection<? extends Certificate> getCertificates(CertSelector selector) method in class:CertStore
/libcore/luni/src/main/java/java/security/
H A DCodeSource.java32 public final Certificate[] getCertificates() { return null; } method in class:CodeSource
H A DCodeSigner.java134 buf.append("CodeSigner [").append(signerCertPath.getCertificates().get(0));
H A DTimestamp.java136 buf.append(signerCertPath.getCertificates().get(0)).append("]");
/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/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/test/java/tests/targets/security/cert/
H A DCertPathBuilderTestPKIX.java76 List<? extends Certificate> certificates = path.getCertificates();
/libcore/luni/src/test/java/tests/security/cert/
H A DCertificateFactory3Test.java135 List<? extends Certificate> list1 = certPath.getCertificates();
158 List<? extends Certificate> list1 = certPath.getCertificates();
186 List<? extends Certificate> list1 = certPath.getCertificates();
H A DCertStore2Test.java216 Collection<? extends Certificate> certificates = certStore.getCertificates(null);
223 Collection<? extends Certificate> certificates = certStore.getCertificates(new MyCertSelector());
231 certStore.getCertificates(new MyOtherCertSelector());
H A DCertStore1Test.java166 certS.getCertificates(null);
175 certS.getCertificates(null);
376 * <code>getCertificates(CertSelector selector)</code>
388 coll = certS[i].getCertificates(null);
H A DCertPathTest.java162 * This test just calls <code>getCertificates()</code> method<br>
166 cp1.getCertificates();
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/net/
H A DOldJarURLConnectionTest.java78 assertNull(juc.getCertificates());
85 Certificate [] certs = juc.getCertificates();
92 juConn.getCertificates();
/libcore/luni/src/main/java/org/apache/harmony/security/pkcs7/
H A DSignedData.java69 public List<Certificate> getCertificates() { method in class:SignedData
/libcore/luni/src/test/java/libcore/java/util/zip/
H A DOldAndroidZipStressTest.java36 * JarEntry.getCertificates() is really slow. http://b/1046174
50 Certificate[] certs = je != null ? je.getCertificates() : null;
/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/crypto/src/main/java/org/conscrypt/
H A DOpenSSLX509CertPath.java86 public List<? extends Certificate> getCertificates() { method in class:OpenSSLX509CertPath
/libcore/luni/src/main/java/org/apache/harmony/security/utils/
H A DJarUtils.java76 = signedData.getCertificates();
/libcore/luni/src/test/java/libcore/java/security/cert/
H A DCertificateFactoryTest.java488 actualCerts = actualPath.getCertificates();
491 actualCerts = pathFromList.getCertificates();
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/luni/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
H A DJarFileTest.java418 Certificate[] certs = entry.getCertificates();
556 assertNull("found certificates", entry.getCertificates());
622 Certificate[] certs = entry.getCertificates();

Completed in 507 milliseconds

12