Lines Matching defs:inStream

318      * the data read from the input stream {@code inStream}.
328 * certificate provided in {@code inStream} must be DER-encoded and
345 * @param inStream an input stream with the certificate data.
352 public final Certificate generateCertificate(InputStream inStream)
355 return certFacSpi.engineGenerateCertificate(inStream);
380 * the data read from the {@code InputStream} inStream. The data
385 * @param inStream an {@code InputStream} containing the data
391 public final CertPath generateCertPath(InputStream inStream)
394 return(certFacSpi.engineGenerateCertPath(inStream));
399 * the data read from the {@code InputStream} inStream. The data
406 * @param inStream an {@code InputStream} containing the data
414 public final CertPath generateCertPath(InputStream inStream,
417 return(certFacSpi.engineGenerateCertPath(inStream, encoding));
443 * from the given input stream {@code inStream}.
453 * {@code inStream} may contain a sequence of DER-encoded certificates
456 * In addition, {@code inStream} may contain a PKCS#7 certificate
468 * @param inStream the input stream with the certificates.
477 (InputStream inStream) throws CertificateException {
478 return certFacSpi.engineGenerateCertificates(inStream);
483 * with the data read from the input stream {@code inStream}.
503 * @param inStream an input stream with the CRL data.
510 public final CRL generateCRL(InputStream inStream)
513 return certFacSpi.engineGenerateCRL(inStream);
518 * from the given input stream {@code inStream}.
528 * {@code inStream} may contain a sequence of DER-encoded CRLs.
529 * In addition, {@code inStream} may contain a PKCS#7 CRL
541 * @param inStream the input stream with the CRLs.
549 public final Collection<? extends CRL> generateCRLs(InputStream inStream)
551 return certFacSpi.engineGenerateCRLs(inStream);