OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:getCertificates
(Results
1 - 25
of
55
) sorted by null
1
2
3
/libcore/luni/src/main/java/java/security/
CodeSource.java
32
public final Certificate[]
getCertificates
() { return null; }
/external/apache-harmony/security/src/test/api/java.injected/java/security/cert/
myCertPath.java
34
public List
getCertificates
() {
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
MyCertPath.java
67
* @see java.security.cert.CertPath#
getCertificates
()
69
public List
getCertificates
() {
/libcore/luni/src/main/java/java/net/
JarURLConnection.java
107
public Certificate[]
getCertificates
() throws java.io.IOException {
113
return jEntry.
getCertificates
();
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarEntryTest.java
120
* @tests java.util.jar.JarEntry#
getCertificates
()
125
assertNull(jarEntry.
getCertificates
());
137
assertNull("
getCertificates
() should be null until the entry is read",
138
jarEntry1.
getCertificates
());
139
assertNull(jarEntry2.
getCertificates
());
143
assertNotNull(jarEntry1.
getCertificates
());
144
assertNotNull(jarEntry2.
getCertificates
());
168
.
getCertificates
();
170
.
getCertificates
();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
SignedData.java
115
public ASN1Set
getCertificates
()
/libcore/luni/src/main/java/java/security/cert/
CertPath.java
83
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
();
CertStore.java
238
public final Collection<? extends Certificate>
getCertificates
(CertSelector selector)
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
MyCertPath.java
69
* @see java.security.cert.CertPath#
getCertificates
()
71
public List<MyCertificate>
getCertificates
() {
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertPathTest.java
140
* This test just calls <code>
getCertificates
()</code> method<br>
144
cp1.
getCertificates
();
CertPathValidatorExceptionTest.java
280
* certPath.
getCertificates
().size() throws: IndexOutOfBoundsException
307
* certPath.
getCertificates
().size()
345
public List
getCertificates
() {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
SignedData.java
243
public ASN1Set
getCertificates
()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
PKIXCertPath.java
340
public List
getCertificates
()
/libcore/crypto/src/main/java/org/conscrypt/
OpenSSLX509CertPath.java
86
public List<? extends Certificate>
getCertificates
() {
/libcore/luni/src/main/java/java/util/jar/
JarEntry.java
100
public Certificate[]
getCertificates
() {
108
return jarVerifier.
getCertificates
(getName());
140
signers = getCodeSigners(
getCertificates
());
JarVerifier.java
421
Certificate[]
getCertificates
(String name) {
/libcore/luni/src/main/java/org/apache/harmony/security/pkcs7/
SignedData.java
69
public List<Certificate>
getCertificates
() {
/libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CertPathImpl.java
167
List<Certificate> certs = sd.
getCertificates
();
272
* @see java.security.cert.CertPath#
getCertificates
()
276
public List<X509Certificate>
getCertificates
() {
/libcore/luni/src/test/java/tests/security/cert/
CertPathValidatorExceptionTest.java
270
* certPath.
getCertificates
().size() throws: IndexOutOfBoundsException
297
* certPath.
getCertificates
().size()
438
public List<Certificate>
getCertificates
() {
CertPathTest.java
162
* This test just calls <code>
getCertificates
()</code> method<br>
166
cp1.
getCertificates
();
CertStore2Test.java
216
Collection<? extends Certificate> certificates = certStore.
getCertificates
(null);
223
Collection<? extends Certificate> certificates = certStore.
getCertificates
(new MyCertSelector());
231
certStore.
getCertificates
(new MyOtherCertSelector());
/libcore/luni/src/test/java/libcore/java/net/
OldJarURLConnectionTest.java
78
assertNull(juc.
getCertificates
());
85
Certificate [] certs = juc.
getCertificates
();
92
juConn.
getCertificates
();
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSSignedData.java
46
* Store certStore = s.
getCertificates
();
327
// public X509Store
getCertificates
(
332
// return
getCertificates
(type, CMSUtils.getProvider(provider));
346
// public X509Store
getCertificates
(
353
// certificateStore = HELPER.createCertificateStore(type, provider, this.
getCertificates
());
442
// certStoreBuilder.addCertificates(this.
getCertificates
());
463
public Store
getCertificates
()
465
return HELPER.
getCertificates
(signedData.
getCertificates
());
485
return HELPER.getAttributeCertificates(signedData.
getCertificates
());
[
all
...]
CMSSignedHelper.java
299
Store
getCertificates
(ASN1Set certSet)
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
JarURLConnectionTest.java
247
* @tests java.net.JarURLConnection#
getCertificates
()
253
assertNull(juc.
getCertificates
());
261
assertNull(juc.
getCertificates
());
268
assertNull(juc.
getCertificates
());
Completed in 656 milliseconds
1
2
3