Searched defs:certs (Results 1 - 7 of 7) sorted by relevance

/libcore/luni/src/main/java/java/security/
H A DCodeSource.java28 public CodeSource(URL location, Certificate[] certs) { } argument
H A DUnresolvedPermission.java27 public UnresolvedPermission(String type, String name, String actions, Certificate[] certs) { argument
/libcore/luni/src/test/java/tests/targets/security/cert/
H A DCertificateTest.java696 private X509Certificate[] certs= new X509Certificate[3]; field in class:CertificateTest
704 certs[0] = (X509Certificate) certificateFactory
707 certs[1] = (X509Certificate) certificateFactory
710 certs[2] = (X509Certificate) certificateFactory
714 certs[0] = (X509Certificate) certificateFactory
717 certs[1] = (X509Certificate) certificateFactory
720 certs[2] = (X509Certificate) certificateFactory
726 result.add(certs[2]);
727 result.add(certs[1]);
729 result.add(certs[
[all...]
/libcore/luni/src/main/java/java/util/jar/
H A DJarEntry.java139 // Measure number of certs.
145 // Create new array and copy all the certs into it.
146 Certificate[] certs = new Certificate[count];
149 System.arraycopy(chain, 0, certs, i, chain.length);
153 return certs;
211 private void addCodeSigner(ArrayList<CodeSigner> asigners, Certificate[] certs) { argument
212 for (Certificate cert : certs) {
233 certPath = factory.generateCertPath(Arrays.asList(certs));
/libcore/support/src/test/java/libcore/javax/net/ssl/
H A DTestKeyManager.java129 private X509Certificate[] dumpCerts(X509Certificate[] certs) { argument
131 for (X509Certificate cert : certs) {
136 return certs;
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
H A DmySSLSession.java28 private Certificate[] certs = null; field in class:mySSLSession
32 certs = null;
41 certs = TestCertUtils.getCertChain();
46 certs = xc;
90 if (certs == null) {
93 return certs;
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DTestCertUtils.java70 * real chain of certificates, it's just an array of 3 certs. The method
105 Certificate[] certs = new Certificate[howMany];
107 certs[i] = new TestCertificate(Integer.toString(startID + i));
109 return new TestCertPath(certs);
156 private Certificate[] certs; field in class:TestCertUtils.TestCertPath
166 certs = getCertChain();
174 * @param certs
176 public TestCertPath(Certificate[] certs) { argument
178 this.certs = certs;
675 engineGenerateCertPath(List certs) argument
[all...]

Completed in 1112 milliseconds