Lines Matching refs:is

5  * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
50 * path build if the delegated CRL issuer is a self-issued certificate, for
51 * it is hard to identify it from its issuer by the "issuer" field only.
55 * CRL issuer from its issuer, there is a potential loop to find the correct
59 * CRL issuers. If the delegated CRL issuer issues itself status, there is
184 ByteArrayInputStream is =
186 Certificate selfSignedCert = cf.generateCertificate(is);
201 ByteArrayInputStream is;
203 is = new ByteArrayInputStream(targetCertStr.getBytes());
204 Certificate cert = cf.generateCertificate(is);
207 is = new ByteArrayInputStream(subCaCertStr.getBytes());
208 cert = cf.generateCertificate(is);
211 is = new ByteArrayInputStream(selfSignedCertStr.getBytes());
212 cert = cf.generateCertificate(is);
215 is = new ByteArrayInputStream(topCrlIssuerCertStr.getBytes());
216 cert = cf.generateCertificate(is);
219 is = new ByteArrayInputStream(subCrlIssuerCertStr.getBytes());
220 cert = cf.generateCertificate(is);
224 is = new ByteArrayInputStream(topCrlStr.getBytes());
225 Collection mixes = cf.generateCRLs(is);
228 is = new ByteArrayInputStream(subCrlStr.getBytes());
229 mixes = cf.generateCRLs(is);
242 ByteArrayInputStream is = null;
244 is = new ByteArrayInputStream(subCaCertStr.getBytes());
246 is = new ByteArrayInputStream(subCrlIssuerCertStr.getBytes());
248 is = new ByteArrayInputStream(targetCertStr.getBytes());
251 X509Certificate target = (X509Certificate)cf.generateCertificate(is);
271 ByteArrayInputStream is = null;
273 is = new ByteArrayInputStream(subCaCertStr.getBytes());
275 is = new ByteArrayInputStream(subCrlIssuerCertStr.getBytes());
277 is = new ByteArrayInputStream(targetCertStr.getBytes());
279 X509Certificate target = (X509Certificate)cf.generateCertificate(is);