Searched refs:getCertificates (Results 1 - 25 of 26) 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.java77 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
H A DCertificateFactory1Test.java601 List<? extends Certificate> list1 = cp.getCertificates();
/libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
H A DX509CertPathImpl.java174 List<Certificate> certs = sd.getCertificates();
227 List<Certificate> certs = sd.getCertificates();
247 * @see java.security.cert.CertPath#getCertificates()
250 public List getCertificates() { method in class:X509CertPathImpl
H A DX509CertFactoryImpl.java214 List<org.apache.harmony.security.x509.Certificate> certs = data.getCertificates();
/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/utils/
H A DJarUtils.java75 = signedData.getCertificates();
/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
/libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
H A DJarFileTest.java410 Certificate[] certs = entry.getCertificates();
548 assertNull("found certificates", entry.getCertificates());

Completed in 327 milliseconds

12