Uses of Interface
org.apache.commons.crypto.stream.output.Output
-
Packages that use Output Package Description org.apache.commons.crypto.stream Stream classesorg.apache.commons.crypto.stream.output Output classes -
-
Uses of Output in org.apache.commons.crypto.stream
Fields in org.apache.commons.crypto.stream declared as Output Modifier and Type Field Description (package private) Output
CryptoOutputStream. output
The output.Constructors in org.apache.commons.crypto.stream with parameters of type Output Constructor Description CryptoOutputStream(Output output, CryptoCipher cipher, int bufferSize, java.security.Key key, java.security.spec.AlgorithmParameterSpec params)
Constructs aCryptoOutputStream
.CtrCryptoOutputStream(Output output, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv)
Constructs aCtrCryptoOutputStream
.CtrCryptoOutputStream(Output output, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv, long streamOffset)
Constructs aCtrCryptoOutputStream
. -
Uses of Output in org.apache.commons.crypto.stream.output
Classes in org.apache.commons.crypto.stream.output that implement Output Modifier and Type Class Description class
ChannelOutput
The ChannelOutput class takes aWritableByteChannel
object and wraps it asOutput
object acceptable byCryptoOutputStream
as the output target.class
StreamOutput
The StreamOutput class takes aOutputStream
object and wraps it asOutput
object acceptable byCryptoOutputStream
as the output target.
-