Uses of Interface
org.apache.commons.crypto.stream.output.Output
Packages that use Output
Package
Description
Stream classes
Output classes
-
Uses of Output in org.apache.commons.crypto.stream
Fields in org.apache.commons.crypto.stream declared as OutputModifier and TypeFieldDescription(package private) final Output
CryptoOutputStream.output
The output.Constructors in org.apache.commons.crypto.stream with parameters of type OutputModifierConstructorDescriptionprotected
CryptoOutputStream
(Output output, CryptoCipher cipher, int bufferSize, Key key, AlgorithmParameterSpec params) Constructs aCryptoOutputStream
.protected
CtrCryptoOutputStream
(Output output, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv) Constructs aCtrCryptoOutputStream
.protected
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 OutputModifier and TypeClassDescriptionclass
The ChannelOutput class takes aWritableByteChannel
object and wraps it asOutput
object acceptable byCryptoOutputStream
as the output target.class
The StreamOutput class takes aOutputStream
object and wraps it asOutput
object acceptable byCryptoOutputStream
as the output target.