Home | History | Annotate | Download | only in cert

Lines Matching refs:certs

101     public X509CertPathImpl(List certs) throws CertificateException {
103 int size = certs.size();
106 Object cert = certs.get(i);
119 * @param certs - the list of certificates
124 private X509CertPathImpl(List certs, int type, byte[] encoding) {
133 certificates = certs;
174 List<Certificate> certs = sd.getCertificates();
175 if (certs == null) {
177 certs = new ArrayList<Certificate>();
180 for (Certificate cert : certs) {
227 List<Certificate> certs = sd.getCertificates();
228 if (certs == null) {
229 certs = new ArrayList<Certificate>();
232 for (Certificate cert : certs) {