Package | Description |
---|---|
org.apache.commons.crypto.stream |
Stream classes
|
org.apache.commons.crypto.stream.output |
Output classes
|
Constructor and Description |
---|
CryptoOutputStream(Output output,
CryptoCipher cipher,
int bufferSize,
Key key,
AlgorithmParameterSpec params)
Constructs a
CryptoOutputStream . |
CtrCryptoOutputStream(Output output,
CryptoCipher cipher,
int bufferSize,
byte[] key,
byte[] iv)
Constructs a
CtrCryptoOutputStream . |
CtrCryptoOutputStream(Output output,
CryptoCipher cipher,
int bufferSize,
byte[] key,
byte[] iv,
long streamOffset)
Constructs a
CtrCryptoOutputStream . |
Modifier and Type | Class and Description |
---|---|
class |
ChannelOutput
The ChannelOutput class takes a
WritableByteChannel object and
wraps it as Output object acceptable by
CryptoOutputStream as the output target. |
class |
StreamOutput
The StreamOutput class takes a
OutputStream object and wraps it
as Output object acceptable by CryptoOutputStream
as the output target. |
Copyright © 2016–2022 The Apache Software Foundation. All rights reserved.