Uses of Interface
org.apache.commons.crypto.stream.input.Input
-
Packages that use Input Package Description org.apache.commons.crypto.stream Stream classesorg.apache.commons.crypto.stream.input Input classesorg.apache.commons.crypto.utils Utils classes -
-
Uses of Input in org.apache.commons.crypto.stream
Fields in org.apache.commons.crypto.stream declared as Input Modifier and Type Field Description (package private) Input
CryptoInputStream. input
The input data.Methods in org.apache.commons.crypto.stream that return Input Modifier and Type Method Description protected Input
CryptoInputStream. getInput()
Gets the input.Constructors in org.apache.commons.crypto.stream with parameters of type Input Constructor Description CryptoInputStream(Input input, CryptoCipher cipher, int bufferSize, java.security.Key key, java.security.spec.AlgorithmParameterSpec params)
Constructs aCryptoInputStream
.CtrCryptoInputStream(Input input, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv)
Constructs aCtrCryptoInputStream
.CtrCryptoInputStream(Input input, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv, long streamOffset)
Constructs aCtrCryptoInputStream
.PositionedCryptoInputStream(java.util.Properties properties, Input in, byte[] key, byte[] iv, long streamOffset)
Constructs aPositionedCryptoInputStream
.PositionedCryptoInputStream(java.util.Properties properties, Input input, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv, long streamOffset)
Constructs aPositionedCryptoInputStream
. -
Uses of Input in org.apache.commons.crypto.stream.input
Classes in org.apache.commons.crypto.stream.input that implement Input Modifier and Type Class Description class
ChannelInput
The ChannelInput class takes aReadableByteChannel
object and wraps it asInput
object acceptable byCryptoInputStream
.class
StreamInput
The StreamInput class takes aInputStream
object and wraps it asInput
object acceptable byCryptoInputStream
. -
Uses of Input in org.apache.commons.crypto.utils
Methods in org.apache.commons.crypto.utils with parameters of type Input Modifier and Type Method Description static void
IoUtils. readFully(Input in, long position, byte[] buffer, int offset, int length)
Does the readFully based on Input's positioned read.
-