Uses of Class
java.io.FilterInputStream
| Package | Description |
|---|---|
| java.io | |
| java.security |
Extensible cryptographic service provider infrastructure (SPI) for using
and defining services such as
Certificates,
Keys, KeyStores, MessageDigests, and Signatures. |
| java.util.jar | |
| java.util.zip | |
| javax.crypto |
This package provides the classes and interfaces for cryptographic applications implementing algorithms for encryption, decryption, or
key agreement.
|
| org.bouncycastle.asn1 | |
| org.bouncycastle.crypto.io | |
| org.conscrypt |
-
Uses of FilterInputStream in java.io
Subclasses of FilterInputStream in java.io Modifier and Type Class Description classBufferedInputStreamWraps an existingInputStreamand buffers the input.classDataInputStreamWraps an existingInputStreamand reads big-endian typed data from it.classLineNumberInputStreamDeprecated.classPushbackInputStreamWraps an existingInputStreamand adds functionality to "push back" bytes that have been read, so that they can be read again. -
Uses of FilterInputStream in java.security
Subclasses of FilterInputStream in java.security Modifier and Type Class Description classDigestInputStreamDigestInputStreamis aFilterInputStreamwhich maintains an associated message digest. -
Uses of FilterInputStream in java.util.jar
Subclasses of FilterInputStream in java.util.jar Modifier and Type Class Description classJarInputStreamThe input stream from which the JAR file to be read may be fetched. -
Uses of FilterInputStream in java.util.zip
Subclasses of FilterInputStream in java.util.zip Modifier and Type Class Description classCheckedInputStreamTheCheckedInputStreamclass is used to maintain a checksum at the same time as the data, on which the checksum is computed, is read from a stream.classDeflaterInputStreamAnInputStreamfilter to compress data.classGZIPInputStreamTheGZIPInputStreamclass is used to read data stored in the GZIP format, reading and decompressing GZIP data from the underlying stream into its buffer.classInflaterInputStreamThis class provides an implementation ofFilterInputStreamthat decompresses data that was compressed using the DEFLATE algorithm (see specification).classZipInputStreamUsed to read (decompress) the data from zip files. -
Uses of FilterInputStream in javax.crypto
Subclasses of FilterInputStream in javax.crypto Modifier and Type Class Description classCipherInputStreamThis class wraps anInputStreamand a cipher so thatread()methods return data that are read from the underlyingInputStreamand processed by the cipher. -
Uses of FilterInputStream in org.bouncycastle.asn1
Subclasses of FilterInputStream in org.bouncycastle.asn1 Modifier and Type Class Description classASN1InputStreama general purpose ASN.1 decoder - note: this class differs from the others in that it returns null after it has read the last object in the stream. -
Uses of FilterInputStream in org.bouncycastle.crypto.io
Subclasses of FilterInputStream in org.bouncycastle.crypto.io Modifier and Type Class Description classCipherInputStreamA CipherInputStream is composed of an InputStream and a BufferedBlockCipher so that read() methods return data that are read in from the underlying InputStream but have been additionally processed by the Cipher.classDigestInputStreamclassMacInputStream -
Uses of FilterInputStream in org.conscrypt
Subclasses of FilterInputStream in org.conscrypt Modifier and Type Class Description classOpenSSLBIOInputStreamProvides an interface to OpenSSL's BIO system directly from a Java InputStream.
LineNumberReaderinstead.