Java javax.crypto CipherInputStream fields, constructors, methods, implement or subclass

Example usage for Java javax.crypto CipherInputStream fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.crypto CipherInputStream.

The text is from its open source code.

Constructor

CipherInputStream(InputStream is, Cipher c)
Constructs a CipherInputStream from an InputStream and a Cipher.

Method

voidclose()
Closes this input stream and releases any system resources associated with the stream.
intread()
Reads the next byte of data from this input stream.
intread(byte b[])
Reads up to b.length bytes of data from this input stream into an array of bytes.
intread(byte b[], int off, int len)
Reads up to len bytes of data from this input stream into an array of bytes.