Home | History | Annotate | Download | only in provider

Lines Matching refs:inStream

246      * read from the input stream inStream.
322 * read from the given input stream inStream.
325 InputStream inStream)
331 while ((cert = engineGenerateCertificate(inStream)) != null)
341 * it with the data read from the input stream inStream.
344 InputStream inStream)
349 currentCrlStream = inStream;
353 else if (currentCrlStream != inStream) // reset if input stream has changed
355 currentCrlStream = inStream;
378 if (!inStream.markSupported())
381 inStream = new BufferedInputStream(inStream, 8192);
385 inStream.mark(10);
386 if (inStream.read() != 0x30) // assume ascii PEM encoded.
388 inStream.reset();
389 return readPEMCRL(inStream);
391 else if (inStream.read() == 0x80) // assume BER encoded.
393 inStream.reset();
394 return readPKCS7CRL(inStream);
398 inStream.reset();
399 return readDERCRL(new ASN1InputStream(inStream, getLimit(inStream)));
414 * the given input stream inStream.
416 * The inStream may contain a sequence of DER-encoded CRLs, or
422 InputStream inStream)
428 while ((crl = engineGenerateCRL(inStream)) != null)
442 InputStream inStream)
445 return engineGenerateCertPath(inStream, "PkiPath");
449 InputStream inStream,
453 return new PKIXCertPath(inStream, encoding);