public class CipherInputStream
extends java.io.FilterInputStream
CipherInputStream
that is safe for use with
AEAD block ciphers, and does not silently catch BadPaddingException
and
IllegalBlockSizeException
errors. Any errors that occur during finalisation
are rethrown wrapped in an InvalidCipherTextException
.Constructor and Description |
---|
CipherInputStream(java.io.InputStream input,
javax.crypto.Cipher cipher)
Constructs a CipherInputStream from an InputStream and an initialised Cipher.
|
Modifier and Type | Method and Description |
---|---|
int |
available() |
void |
close()
Closes the underlying input stream, and then finalises the processing of the data by the
cipher.
|
void |
mark(int readlimit) |
boolean |
markSupported() |
int |
read()
Reads data from the underlying stream and processes it with the cipher until the cipher
outputs data, and returns the next available byte.
|
int |
read(byte[] b,
int off,
int len)
Reads data from the underlying stream and processes it with the cipher until the cipher
outputs data, and then returns up to
len bytes in the provided array. |
void |
reset() |
long |
skip(long n) |
public CipherInputStream(java.io.InputStream input, javax.crypto.Cipher cipher)
public int read() throws java.io.IOException
read
in class java.io.FilterInputStream
java.io.IOException
- if there was an error closing the input stream.InvalidCipherTextException
- if the data read from the stream was invalid ciphertext
(e.g. the cipher is an AEAD cipher and the ciphertext tag check fails).public int read(byte[] b, int off, int len) throws java.io.IOException
len
bytes in the provided array.
If the underlying stream is exhausted by this call, the cipher will be finalised.read
in class java.io.FilterInputStream
b
- the buffer into which the data is read.off
- the start offset in the destination array b
len
- the maximum number of bytes read.-1
if there is no
more data because the end of the stream has been reached.java.io.IOException
- if there was an error closing the input stream.InvalidCipherTextException
- if the data read from the stream was invalid ciphertext
(e.g. the cipher is an AEAD cipher and the ciphertext tag check fails).public long skip(long n) throws java.io.IOException
skip
in class java.io.FilterInputStream
java.io.IOException
public int available() throws java.io.IOException
available
in class java.io.FilterInputStream
java.io.IOException
public void close() throws java.io.IOException
close
in interface java.io.Closeable
close
in interface java.lang.AutoCloseable
close
in class java.io.FilterInputStream
java.io.IOException
- if there was an error closing the input stream.InvalidCipherTextException
- if the data read from the stream was invalid ciphertext
(e.g. the cipher is an AEAD cipher and the ciphertext tag check fails).public void mark(int readlimit)
mark
in class java.io.FilterInputStream
public void reset() throws java.io.IOException
reset
in class java.io.FilterInputStream
java.io.IOException
public boolean markSupported()
markSupported
in class java.io.FilterInputStream