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.
57 * the CAs have the keyCertSign bit set only, it is expected to work before
178 ByteArrayInputStream is =
180 Certificate selfSignedCert = cf.generateCertificate(is);
195 ByteArrayInputStream is;
197 is = new ByteArrayInputStream(targetCertStr.getBytes());
198 Certificate cert = cf.generateCertificate(is);
201 is = new ByteArrayInputStream(subCaCertStr.getBytes());
202 cert = cf.generateCertificate(is);
205 is = new ByteArrayInputStream(selfSignedCertStr.getBytes());
206 cert = cf.generateCertificate(is);
209 is = new ByteArrayInputStream(topCrlIssuerCertStr.getBytes());
210 cert = cf.generateCertificate(is);
213 is = new ByteArrayInputStream(subCrlIssuerCertStr.getBytes());
214 cert = cf.generateCertificate(is);
218 is = new ByteArrayInputStream(topCrlStr.getBytes());
219 Collection mixes = cf.generateCRLs(is);
222 is = new ByteArrayInputStream(subCrlStr.getBytes());
223 mixes = cf.generateCRLs(is);
236 ByteArrayInputStream is = null;
238 is = new ByteArrayInputStream(subCaCertStr.getBytes());
240 is = new ByteArrayInputStream(subCrlIssuerCertStr.getBytes());
242 is = new ByteArrayInputStream(targetCertStr.getBytes());
245 X509Certificate target = (X509Certificate)cf.generateCertificate(is);
265 ByteArrayInputStream is = null;
267 is = new ByteArrayInputStream(subCaCertStr.getBytes());
269 is = new ByteArrayInputStream(subCrlIssuerCertStr.getBytes());
271 is = new ByteArrayInputStream(targetCertStr.getBytes());
273 X509Certificate target = (X509Certificate)cf.generateCertificate(is);