java.lang.Object
java.io.InputStream
java.io.FilterInputStream
javax.crypto.CipherInputStream
- All Implemented Interfaces:
- Closeable
- See Also:
- Top Examples, Source Code,
Cipher
,
CipherOutputStream
public int available()
throws IOException
- See Also:
FilterInputStream.in
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
protected CipherInputStream(InputStream is)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public CipherInputStream(InputStream is,
Cipher c)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void close()
throws IOException
- See Also:
FilterInputStream.in
, Closeable
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public boolean markSupported()
- See Also:
InputStream.reset()
, InputStream.mark(int)
, FilterInputStream
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public int read()
throws IOException
- See Also:
FilterInputStream.in
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public int read(byte[] b)
throws IOException
- See Also:
InputStream.read(byte[], int, int)
, FilterInputStream
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public int read(byte[] b,
int off,
int len)
throws IOException
- See Also:
InputStream.read()
, FilterInputStream
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public long skip(long n)
throws IOException
- See Also:
- FilterInputStream,
available
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples