KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > crypto > CipherInputStream

javax.crypto
Class CipherInputStream

java.lang.Object
  extended by java.io.InputStream
      extended by java.io.FilterInputStream
          extended by 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  

Popular Tags