Home | History | Annotate | Download | only in cert

Lines Matching defs:certs

128     public X509CertPathImpl(List<? extends java.security.cert.Certificate> certs)
132 final int size = certs.size();
136 final java.security.cert.Certificate cert = certs.get(i);
146 * Creates an X.509 CertPath over the specified {@code certs}. The
147 * {@code certs} should be sorted correctly when calling into the
151 private X509CertPathImpl(List<X509Certificate> certs, Encoding type) {
154 certificates = certs;
167 List<Certificate> certs = sd.getCertificates();
168 if (certs == null) {
169 certs = Collections.emptyList();
172 final List<X509Certificate> result = new ArrayList<X509Certificate>(certs.size());
173 for (Certificate cert : certs) {