Example usage for Java javax.crypto CipherInputStream fields, constructors, methods, implement or subclass
The text is from its open source code.
CipherInputStream(InputStream is, Cipher c) Constructs a CipherInputStream from an InputStream and a Cipher. |
void | close() Closes this input stream and releases any system resources associated with the stream. |
int | read() Reads the next byte of data from this input stream. |
int | read(byte b[]) Reads up to b.length bytes of data from this input stream into an array of bytes. |
int | read(byte b[], int off, int len) Reads up to len bytes of data from this input stream into an array of bytes. |