Class CipherInputStream
- java.lang.Object
-
- java.io.InputStream
-
- java.io.FilterInputStream
-
- javax.crypto.CipherInputStream
-
- All Implemented Interfaces:
Closeable,AutoCloseable
public class CipherInputStream extends FilterInputStream
This class wraps anInputStreamand a cipher so thatread()methods return data that are read from the underlyingInputStreamand processed by the cipher.The cipher must be initialized for the requested operation before being used by a
CipherInputStream. For example, if a cipher initialized for decryption is used with aCipherInputStream, theCipherInputStreamtries to read the data an decrypt them before returning.
-
-
Field Summary
-
Fields inherited from class java.io.FilterInputStream
in
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedCipherInputStream(InputStream is)Creates a newCipherInputStreaminstance for anInputStreamwithout a cipher.CipherInputStream(InputStream is, Cipher c)Creates a newCipherInputStreaminstance for anInputStreamand a cipher.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intavailable()Returns an estimated number of bytes that can be read or skipped without blocking for more input.voidclose()Closes thisCipherInputStream, also closes the underlying input stream and calldoFinalon the cipher object.booleanmarkSupported()Returns whether this input stream supportsmarkandreset, which it does not.intread()Reads the next byte from this cipher input stream.intread(byte[] buf, int off, int len)Reads the nextlenbytes from this input stream into bufferbufstarting at offsetoff.longskip(long byteCount)SkipsbyteCountbytes in this stream.-
Methods inherited from class java.io.FilterInputStream
mark, reset
-
Methods inherited from class java.io.InputStream
read
-
-
-
-
Constructor Detail
-
CipherInputStream
public CipherInputStream(InputStream is, Cipher c)
Creates a newCipherInputStreaminstance for anInputStreamand a cipher.Warning: passing a null source creates an invalid
CipherInputStream. All read operations on such a stream will fail.- Parameters:
is- the input stream to read data from.c- the cipher to process the data with.
-
CipherInputStream
protected CipherInputStream(InputStream is)
Creates a newCipherInputStreaminstance for anInputStreamwithout a cipher.A
NullCipheris created and used to process the data.- Parameters:
is- the input stream to read data from.
-
-
Method Detail
-
read
public int read() throws IOExceptionReads the next byte from this cipher input stream.- Overrides:
readin classFilterInputStream- Returns:
- the next byte, or
-1if the end of the stream is reached. - Throws:
IOException- if an error occurs.
-
read
public int read(byte[] buf, int off, int len) throws IOExceptionReads the nextlenbytes from this input stream into bufferbufstarting at offsetoff.if
bufisnull, the nextlenbytes are read and discarded.- Overrides:
readin classFilterInputStream- Returns:
- the number of bytes filled into buffer
buf, or-1of the of the stream is reached. - Throws:
IOException- if an error occurs.NullPointerException- if the underlying input stream isnull.
-
skip
public long skip(long byteCount) throws IOExceptionDescription copied from class:FilterInputStreamSkipsbyteCountbytes in this stream. Subsequent calls toreadwill not return these bytes unlessresetis used. This implementation skipsbyteCountbytes in the filtered stream.- Overrides:
skipin classFilterInputStream- Returns:
- the number of bytes actually skipped.
- Throws:
IOException- if this stream is closed or another IOException occurs.- See Also:
FilterInputStream.mark(int),FilterInputStream.reset()
-
available
public int available() throws IOExceptionDescription copied from class:InputStreamReturns an estimated number of bytes that can be read or skipped without blocking for more input.Note that this method provides such a weak guarantee that it is not very useful in practice.
Firstly, the guarantee is "without blocking for more input" rather than "without blocking": a read may still block waiting for I/O to complete — the guarantee is merely that it won't have to wait indefinitely for data to be written. The result of this method should not be used as a license to do I/O on a thread that shouldn't be blocked.
Secondly, the result is a conservative estimate and may be significantly smaller than the actual number of bytes available. In particular, an implementation that always returns 0 would be correct. In general, callers should only use this method if they'd be satisfied with treating the result as a boolean yes or no answer to the question "is there definitely data ready?".
Thirdly, the fact that a given number of bytes is "available" does not guarantee that a read or skip will actually read or skip that many bytes: they may read or skip fewer.
It is particularly important to realize that you must not use this method to size a container and assume that you can read the entirety of the stream without needing to resize the container. Such callers should probably write everything they read to a
ByteArrayOutputStreamand convert that to a byte array. Alternatively, if you're reading from a file,File.length()returns the current length of the file (though assuming the file's length can't change may be incorrect, reading a file is inherently racy).The default implementation of this method in
InputStreamalways returns 0. Subclasses should override this method if they are able to indicate the number of bytes available.- Overrides:
availablein classFilterInputStream- Returns:
- the estimated number of bytes available
- Throws:
IOException- if this stream is closed or an error occurs
-
close
public void close() throws IOExceptionCloses thisCipherInputStream, also closes the underlying input stream and calldoFinalon the cipher object.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classFilterInputStream- Throws:
IOException- if an error occurs.
-
markSupported
public boolean markSupported()
Returns whether this input stream supportsmarkandreset, which it does not.- Overrides:
markSupportedin classFilterInputStream- Returns:
- false, since this input stream does not support
markandreset. - See Also:
FilterInputStream.mark(int),FilterInputStream.reset(),FilterInputStream.skip(long)
-
-