??????
A C D E F G I J L M N O P R S U V W 

A

AES_BLOCK_SIZE - ? ??????org.apache.commons.crypto.cipher.CryptoCipherFactory
For AES, the algorithm block is fixed size of 128 bits.
available() - ? ????org.apache.commons.crypto.stream.CryptoInputStream
available() - ? ????org.apache.commons.crypto.stream.input.ChannelInput
Overrides the Input.available().
available() - ?? ????org.apache.commons.crypto.stream.input.Input
Returns an estimate of the number of bytes that can be read (or skipped over) from this input without blocking by the next invocation of a method for this input stream.
available() - ? ????org.apache.commons.crypto.stream.input.StreamInput
Overrides the Input.available().

C

ChannelInput - org.apache.commons.crypto.stream.input???
The ChannelInput class takes a ReadableByteChannel object and wraps it as Input object acceptable by CryptoInputStream.
ChannelInput(ReadableByteChannel) - ? ????org.apache.commons.crypto.stream.input.ChannelInput
Constructs the ChannelInput.
ChannelOutput - org.apache.commons.crypto.stream.output???
The ChannelOutput class takes a WritableByteChannel object and wraps it as Output object acceptable by CryptoOutputStream as the output target.
ChannelOutput(WritableByteChannel) - ? ????org.apache.commons.crypto.stream.output.ChannelOutput
Constructs a ChannelOutput.
checkArgument(boolean) - ? ??????org.apache.commons.crypto.utils.Utils
Ensures the truth of an expression involving one or more parameters to the calling method.
checkArgument(boolean, Object) - ? ??????org.apache.commons.crypto.utils.Utils
Checks the truth of an expression.
checkNotNull(T) - ? ??????org.apache.commons.crypto.utils.Utils
Ensures that an object reference passed as a parameter to the calling method is not null.
checkState(boolean) - ? ??????org.apache.commons.crypto.utils.Utils
Ensures the truth of an expression involving the state of the calling instance, but not involving any parameters to the calling method.
checkStream() - ? ????org.apache.commons.crypto.stream.CryptoInputStream
Checks whether the stream is closed.
checkStream() - ? ????org.apache.commons.crypto.stream.CryptoOutputStream
Checks whether the stream is closed.
CLASSES_KEY - ? ??????org.apache.commons.crypto.cipher.CryptoCipherFactory
The configuration key of the CryptoCipher implementation class.
CLASSES_KEY - ? ??????org.apache.commons.crypto.random.CryptoRandomFactory
The configuration key of the CryptoRandom implementation class.
cleanup(Closeable...) - ? ??????org.apache.commons.crypto.utils.IoUtils
Closes the Closeable objects and ignore any IOException or null pointers.
close() - ? ????org.apache.commons.crypto.stream.CryptoInputStream
Overrides the InputStream.close().
close() - ? ????org.apache.commons.crypto.stream.CryptoOutputStream
Overrides the OutputStream.close().
close() - ? ????org.apache.commons.crypto.stream.input.ChannelInput
Overrides the Input.seek(long).
close() - ?? ????org.apache.commons.crypto.stream.input.Input
Closes this input and releases any system resources associated with the under layer input.
close() - ? ????org.apache.commons.crypto.stream.input.StreamInput
Overrides the Input.seek(long).
close() - ? ????org.apache.commons.crypto.stream.output.ChannelOutput
Overrides the Output.close().
close() - ?? ????org.apache.commons.crypto.stream.output.Output
Closes this output and releases any system resources associated with the under layer output.
close() - ? ????org.apache.commons.crypto.stream.output.StreamOutput
Overrides the Output.close().
close() - ? ????org.apache.commons.crypto.stream.PositionedCryptoInputStream
CONF_PREFIX - ? ??????org.apache.commons.crypto.Crypto
The prefix of all crypto configuration keys
Crypto - org.apache.commons.crypto???
Provides diagnostic information about Commons Crypto and keys for native class loading
Crypto() - ? ????org.apache.commons.crypto.Crypto
 
CryptoCipher - org.apache.commons.crypto.cipher????
The interface of cryptographic cipher for encryption and decryption.
CryptoCipherFactory - org.apache.commons.crypto.cipher???
This is the factory class used for creating CryptoCipher instances.
CryptoCipherFactory.CipherProvider - org.apache.commons.crypto.cipher????
Defines the internal CryptoCipher implementations.
CryptoInputStream - org.apache.commons.crypto.stream???
CryptoInputStream reads input data and decrypts data in stream manner.
CryptoInputStream(String, Properties, InputStream, Key, AlgorithmParameterSpec) - ? ????org.apache.commons.crypto.stream.CryptoInputStream
Constructs a CryptoInputStream.
CryptoInputStream(String, Properties, ReadableByteChannel, Key, AlgorithmParameterSpec) - ? ????org.apache.commons.crypto.stream.CryptoInputStream
Constructs a CryptoInputStream.
CryptoInputStream(InputStream, CryptoCipher, int, Key, AlgorithmParameterSpec) - ? ????org.apache.commons.crypto.stream.CryptoInputStream
Constructs a CryptoInputStream.
CryptoInputStream(ReadableByteChannel, CryptoCipher, int, Key, AlgorithmParameterSpec) - ? ????org.apache.commons.crypto.stream.CryptoInputStream
Constructs a CryptoInputStream.
CryptoInputStream(Input, CryptoCipher, int, Key, AlgorithmParameterSpec) - ? ????org.apache.commons.crypto.stream.CryptoInputStream
Constructs a CryptoInputStream.
CryptoOutputStream - org.apache.commons.crypto.stream???
CryptoOutputStream encrypts data and writes to the under layer output.
CryptoOutputStream(String, Properties, OutputStream, Key, AlgorithmParameterSpec) - ? ????org.apache.commons.crypto.stream.CryptoOutputStream
Constructs a CryptoOutputStream.
CryptoOutputStream(String, Properties, WritableByteChannel, Key, AlgorithmParameterSpec) - ? ????org.apache.commons.crypto.stream.CryptoOutputStream
Constructs a CryptoOutputStream.
CryptoOutputStream(OutputStream, CryptoCipher, int, Key, AlgorithmParameterSpec) - ? ????org.apache.commons.crypto.stream.CryptoOutputStream
Constructs a CryptoOutputStream.
CryptoOutputStream(WritableByteChannel, CryptoCipher, int, Key, AlgorithmParameterSpec) - ? ????org.apache.commons.crypto.stream.CryptoOutputStream
Constructs a CryptoOutputStream.
CryptoOutputStream(Output, CryptoCipher, int, Key, AlgorithmParameterSpec) - ? ????org.apache.commons.crypto.stream.CryptoOutputStream
Constructs a CryptoOutputStream.
CryptoRandom - org.apache.commons.crypto.random????
The interface for CryptoRandom.
CryptoRandomFactory - org.apache.commons.crypto.random???
This is the factory class used for creating CryptoRandom instances
CryptoRandomFactory.RandomProvider - org.apache.commons.crypto.random????
Defines the internal CryptoRandom implementations.
CtrCryptoInputStream - org.apache.commons.crypto.stream???
CtrCryptoInputStream decrypts data.
CtrCryptoInputStream(Properties, InputStream, byte[], byte[]) - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Constructs a CtrCryptoInputStream.
CtrCryptoInputStream(Properties, ReadableByteChannel, byte[], byte[]) - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Constructs a CtrCryptoInputStream.
CtrCryptoInputStream(InputStream, CryptoCipher, int, byte[], byte[]) - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Constructs a CtrCryptoInputStream.
CtrCryptoInputStream(ReadableByteChannel, CryptoCipher, int, byte[], byte[]) - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Constructs a CtrCryptoInputStream.
CtrCryptoInputStream(Input, CryptoCipher, int, byte[], byte[]) - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Constructs a CtrCryptoInputStream.
CtrCryptoInputStream(Properties, InputStream, byte[], byte[], long) - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Constructs a CtrCryptoInputStream.
CtrCryptoInputStream(Properties, ReadableByteChannel, byte[], byte[], long) - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Constructs a CtrCryptoInputStream.
CtrCryptoInputStream(InputStream, CryptoCipher, int, byte[], byte[], long) - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Constructs a CtrCryptoInputStream.
CtrCryptoInputStream(ReadableByteChannel, CryptoCipher, int, byte[], byte[], long) - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Constructs a CtrCryptoInputStream.
CtrCryptoInputStream(Input, CryptoCipher, int, byte[], byte[], long) - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Constructs a CtrCryptoInputStream.
CtrCryptoOutputStream - org.apache.commons.crypto.stream???
CtrCryptoOutputStream encrypts data.
CtrCryptoOutputStream(Properties, OutputStream, byte[], byte[]) - ? ????org.apache.commons.crypto.stream.CtrCryptoOutputStream
Constructs a CtrCryptoOutputStream.
CtrCryptoOutputStream(Properties, WritableByteChannel, byte[], byte[]) - ? ????org.apache.commons.crypto.stream.CtrCryptoOutputStream
Constructs a CtrCryptoOutputStream.
CtrCryptoOutputStream(OutputStream, CryptoCipher, int, byte[], byte[]) - ? ????org.apache.commons.crypto.stream.CtrCryptoOutputStream
Constructs a CtrCryptoOutputStream.
CtrCryptoOutputStream(WritableByteChannel, CryptoCipher, int, byte[], byte[]) - ? ????org.apache.commons.crypto.stream.CtrCryptoOutputStream
Constructs a CtrCryptoOutputStream.
CtrCryptoOutputStream(Output, CryptoCipher, int, byte[], byte[]) - ? ????org.apache.commons.crypto.stream.CtrCryptoOutputStream
Constructs a CtrCryptoOutputStream.
CtrCryptoOutputStream(Properties, OutputStream, byte[], byte[], long) - ? ????org.apache.commons.crypto.stream.CtrCryptoOutputStream
Constructs a CtrCryptoOutputStream.
CtrCryptoOutputStream(Properties, WritableByteChannel, byte[], byte[], long) - ? ????org.apache.commons.crypto.stream.CtrCryptoOutputStream
Constructs a CtrCryptoOutputStream.
CtrCryptoOutputStream(OutputStream, CryptoCipher, int, byte[], byte[], long) - ? ????org.apache.commons.crypto.stream.CtrCryptoOutputStream
Constructs a CtrCryptoOutputStream.
CtrCryptoOutputStream(WritableByteChannel, CryptoCipher, int, byte[], byte[], long) - ? ????org.apache.commons.crypto.stream.CtrCryptoOutputStream
Constructs a CtrCryptoOutputStream.
CtrCryptoOutputStream(Output, CryptoCipher, int, byte[], byte[], long) - ? ????org.apache.commons.crypto.stream.CtrCryptoOutputStream
Constructs a CtrCryptoOutputStream.

D

decrypt() - ? ????org.apache.commons.crypto.stream.CryptoInputStream
Does the decryption using inBuffer as input and outBuffer as output.
decrypt() - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Does the decryption using inBuffer as input and outBuffer as output.
decrypt(ByteBuffer, int, int) - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Decrypts all data in buf: total n bytes from given start position.
decrypt(long, byte[], int, int) - ? ????org.apache.commons.crypto.stream.PositionedCryptoInputStream
Decrypts length bytes in buffer starting at offset.
decryptBuffer(ByteBuffer) - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Does the decryption using out as output.
decryptFinal() - ? ????org.apache.commons.crypto.stream.CryptoInputStream
Does final of the cipher to end the decrypting stream.
decryptInPlace(ByteBuffer) - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Does the decryption using inBuffer as input and buf as output.
decryptMore() - ? ????org.apache.commons.crypto.stream.CryptoInputStream
Decrypts more data by reading the under layer stream.
decryptMore() - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Decrypts more data by reading the under layer stream.
DEVICE_FILE_PATH_DEFAULT - ? ??????org.apache.commons.crypto.random.CryptoRandomFactory
The default value ("/dev/urandom") of the file path for secure random device.
DEVICE_FILE_PATH_KEY - ? ??????org.apache.commons.crypto.random.CryptoRandomFactory
The configuration key of the file path for secure random device.
doFinal(ByteBuffer, ByteBuffer) - ?? ????org.apache.commons.crypto.cipher.CryptoCipher
Encrypts or decrypts data in a single-part operation, or finishes a multiple-part operation.
doFinal(byte[], int, int, byte[], int) - ?? ????org.apache.commons.crypto.cipher.CryptoCipher
Encrypts or decrypts data in a single-part operation, or finishes a multiple-part operation.

E

encrypt() - ? ????org.apache.commons.crypto.stream.CryptoOutputStream
Does the encryption, input is CryptoOutputStream.inBuffer and output is CryptoOutputStream.outBuffer.
encrypt() - ? ????org.apache.commons.crypto.stream.CtrCryptoOutputStream
Does the encryption, input is CryptoOutputStream.inBuffer and output is CryptoOutputStream.outBuffer.
encryptFinal() - ? ????org.apache.commons.crypto.stream.CryptoOutputStream
Does final encryption of the last data.
encryptFinal() - ? ????org.apache.commons.crypto.stream.CtrCryptoOutputStream
Does final encryption of the last data.

F

flush() - ? ????org.apache.commons.crypto.stream.CryptoOutputStream
Overrides the OutputStream.flush().
flush() - ? ????org.apache.commons.crypto.stream.output.ChannelOutput
Overrides the Output.flush().
flush() - ?? ????org.apache.commons.crypto.stream.output.Output
Flushes this output and forces any buffered output bytes to be written out if the under layer output method support.
flush() - ? ????org.apache.commons.crypto.stream.output.StreamOutput
Overrides the Output.flush().
freeBuffers() - ? ????org.apache.commons.crypto.stream.CryptoInputStream
Forcibly free the direct buffers.
freeBuffers() - ? ????org.apache.commons.crypto.stream.CryptoOutputStream
Forcibly free the direct buffers.

G

getAlgorithm() - ?? ????org.apache.commons.crypto.cipher.CryptoCipher
Returns the algorithm name of this CryptoCipher object.
getBlockSize() - ?? ????org.apache.commons.crypto.cipher.CryptoCipher
Returns the block size (in bytes).
getBufferSize() - ? ????org.apache.commons.crypto.stream.CryptoInputStream
Gets the buffer size.
getBufferSize() - ? ????org.apache.commons.crypto.stream.CryptoOutputStream
Gets the buffer size.
getCipher() - ? ????org.apache.commons.crypto.stream.CryptoInputStream
Gets the internal CryptoCipher.
getCipher() - ? ????org.apache.commons.crypto.stream.CryptoOutputStream
Gets the internal Cipher.
getCipherClass() - ? ??????org.apache.commons.crypto.jna.OpenSslJna
 
getCipherInstance(String, Properties) - ? ??????org.apache.commons.crypto.utils.Utils
Helper method to create a CryptoCipher instance and throws only IOException.
getClassByName(String) - ? ??????org.apache.commons.crypto.utils.ReflectionUtils
Loads a class by name.
getClassName() - ?? ????org.apache.commons.crypto.cipher.CryptoCipherFactory.CipherProvider
Gets the class name of the provider.
getClassName() - ?? ????org.apache.commons.crypto.random.CryptoRandomFactory.RandomProvider
Gets the class name of the provider.
getComponentName() - ? ??????org.apache.commons.crypto.Crypto
Gets the component version of Apache Commons Crypto.
getComponentVersion() - ? ??????org.apache.commons.crypto.Crypto
Gets the component version of Apache Commons Crypto.
getCounter(long) - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Gets the counter for input stream position.
getCryptoCipher(String, Properties) - ? ??????org.apache.commons.crypto.cipher.CryptoCipherFactory
Gets a cipher instance for specified algorithm/mode/padding.
getCryptoCipher(String) - ? ??????org.apache.commons.crypto.cipher.CryptoCipherFactory
Gets a cipher for algorithm/mode/padding in config value commons.crypto.cipher.transformation
getCryptoRandom() - ? ??????org.apache.commons.crypto.random.CryptoRandomFactory
Gets a CryptoRandom instance using the default implementation as defined by CryptoRandomFactory.CLASSES_DEFAULT
getCryptoRandom(Properties) - ? ??????org.apache.commons.crypto.random.CryptoRandomFactory
Gets a CryptoRandom instance for specified props.
getDefaultProperties() - ? ??????org.apache.commons.crypto.utils.Utils
Gets a properties instance that defaults to the System Properties plus any other properties found in the file Utils.SYSTEM_PROPERTIES_FILE
getImplClass() - ?? ????org.apache.commons.crypto.cipher.CryptoCipherFactory.CipherProvider
Gets the implementation class of the provider.
getImplClass() - ?? ????org.apache.commons.crypto.random.CryptoRandomFactory.RandomProvider
Gets the implementation class of the provider.
getInBuffer() - ? ????org.apache.commons.crypto.stream.CryptoOutputStream
Gets the inBuffer.
getInitIV() - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Gets the initialization vector.
getInput() - ? ????org.apache.commons.crypto.stream.CryptoInputStream
Gets the input.
getKey() - ? ????org.apache.commons.crypto.stream.CryptoInputStream
Gets the key.
getLoadingError() - ? ??????org.apache.commons.crypto.Crypto
The loading error throwable, if loading failed.
getOut() - ? ????org.apache.commons.crypto.stream.output.StreamOutput
Gets the output stream.
getOutBuffer() - ? ????org.apache.commons.crypto.stream.CryptoOutputStream
Gets the outBuffer.
getPadding(long) - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Gets the padding for input stream position.
getParams() - ? ????org.apache.commons.crypto.stream.CryptoInputStream
Gets the specification of cryptographic parameters.
getProperties(Properties) - ? ??????org.apache.commons.crypto.utils.Utils
Gets the properties merged with default properties.
getRandomClass() - ? ??????org.apache.commons.crypto.jna.OpenSslJna
 
getStreamOffset() - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Gets the offset of the stream.
getStreamOffset() - ? ????org.apache.commons.crypto.stream.CtrCryptoOutputStream
Get the underlying stream offset
getStreamPosition() - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Gets the position of the stream.

I

init(int, Key, AlgorithmParameterSpec) - ?? ????org.apache.commons.crypto.cipher.CryptoCipher
Initializes the cipher with mode, key and iv.
initCipher() - ? ????org.apache.commons.crypto.stream.CryptoInputStream
Initializes the cipher.
initCipher() - ? ????org.apache.commons.crypto.stream.CryptoOutputStream
Initializes the cipher.
initCipher() - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
initCipher() - ? ????org.apache.commons.crypto.stream.CtrCryptoOutputStream
initialisationError() - ? ??????org.apache.commons.crypto.jna.OpenSslJna
 
Input - org.apache.commons.crypto.stream.input????
The Input interface abstract the input source of CryptoInputStream so that different implementation of input can be used.
IoUtils - org.apache.commons.crypto.utils???
General utility methods for working with IO.
isEnabled() - ? ??????org.apache.commons.crypto.jna.OpenSslJna
 
isNativeCodeLoaded() - ? ??????org.apache.commons.crypto.Crypto
Checks whether the native code has been successfully loaded for the platform.
isOpen() - ? ????org.apache.commons.crypto.stream.CryptoInputStream
Overrides the Channel.isOpen().
isOpen() - ? ????org.apache.commons.crypto.stream.CryptoOutputStream
Overrides the Channel.isOpen().

J

JAVA_ALGORITHM_DEFAULT - ? ??????org.apache.commons.crypto.random.CryptoRandomFactory
The default value ("SHA1PRNG") of the algorithm of secure random.
JAVA_ALGORITHM_KEY - ? ??????org.apache.commons.crypto.random.CryptoRandomFactory
The configuration key of the algorithm of secure random.
JCE_PROVIDER_KEY - ? ??????org.apache.commons.crypto.cipher.CryptoCipherFactory
The configuration key of the provider class for JCE cipher.

L

LIB_NAME_KEY - ? ??????org.apache.commons.crypto.Crypto
The configuration key of the file name for loading crypto library.
LIB_PATH_KEY - ? ??????org.apache.commons.crypto.Crypto
The configuration key of the path for loading crypto library.
LIB_TEMPDIR_KEY - ? ??????org.apache.commons.crypto.Crypto
The configuration key of temp directory for extracting crypto library.

M

main(String[]) - ? ??????org.apache.commons.crypto.Crypto
The Main of Crypto
mark(int) - ? ????org.apache.commons.crypto.stream.CryptoInputStream
Overrides the InputStream.mark(int).
markSupported() - ? ????org.apache.commons.crypto.stream.CryptoInputStream

N

newInstance(Class<T>, Object...) - ? ??????org.apache.commons.crypto.utils.ReflectionUtils
Uses the constructor represented by this Constructor object to create and initialize a new instance of the constructor's declaring class, with the specified initialization parameters.
nextBytes(byte[]) - ?? ????org.apache.commons.crypto.random.CryptoRandom
Generates random bytes and places them into a user-supplied byte array.

O

OpenSslJna - org.apache.commons.crypto.jna???
Public class to give access to the package protected class objects
OpenSslJna() - ? ????org.apache.commons.crypto.jna.OpenSslJna
 
org.apache.commons.crypto - ??? org.apache.commons.crypto
Crypto classes
org.apache.commons.crypto.cipher - ??? org.apache.commons.crypto.cipher
CryptoCipher classes
org.apache.commons.crypto.jna - ??? org.apache.commons.crypto.jna
JNA classes
org.apache.commons.crypto.random - ??? org.apache.commons.crypto.random
Random classes
org.apache.commons.crypto.stream - ??? org.apache.commons.crypto.stream
Stream classes
org.apache.commons.crypto.stream.input - ??? org.apache.commons.crypto.stream.input
Input classes
org.apache.commons.crypto.stream.output - ??? org.apache.commons.crypto.stream.output
Output classes
org.apache.commons.crypto.utils - ??? org.apache.commons.crypto.utils
Utils classes
Output - org.apache.commons.crypto.stream.output????
The Output interface abstract the output target of CryptoOutputStream so that different implementation of output can be used.

P

PositionedCryptoInputStream - org.apache.commons.crypto.stream???
PositionedCryptoInputStream provides the capability to decrypt the stream starting at random position as well as provides the foundation for positioned read for decrypting.
PositionedCryptoInputStream(Properties, Input, byte[], byte[], long) - ? ????org.apache.commons.crypto.stream.PositionedCryptoInputStream
PositionedCryptoInputStream(Properties, Input, CryptoCipher, int, byte[], byte[], long) - ? ????org.apache.commons.crypto.stream.PositionedCryptoInputStream
postDecryption(long) - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
This method is executed immediately after decryption.

R

read() - ? ????org.apache.commons.crypto.stream.CryptoInputStream
Overrides the InputStream.read().
read(byte[], int, int) - ? ????org.apache.commons.crypto.stream.CryptoInputStream
read(ByteBuffer) - ? ????org.apache.commons.crypto.stream.CryptoInputStream
read(ByteBuffer) - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
read(ByteBuffer) - ? ????org.apache.commons.crypto.stream.input.ChannelInput
Overrides the Input.read(ByteBuffer).
read(long, byte[], int, int) - ? ????org.apache.commons.crypto.stream.input.ChannelInput
read(ByteBuffer) - ?? ????org.apache.commons.crypto.stream.input.Input
Reads a sequence of bytes from input into the given buffer.
read(long, byte[], int, int) - ?? ????org.apache.commons.crypto.stream.input.Input
Reads up to the specified number of bytes from a given position within a stream and return the number of bytes read.
read(ByteBuffer) - ? ????org.apache.commons.crypto.stream.input.StreamInput
Overrides the Input.read(ByteBuffer).
read(long, byte[], int, int) - ? ????org.apache.commons.crypto.stream.input.StreamInput
read(long, byte[], int, int) - ? ????org.apache.commons.crypto.stream.PositionedCryptoInputStream
Reads up to the specified number of bytes from a given position within a stream and return the number of bytes read.
readFully(long, byte[], int, int) - ? ????org.apache.commons.crypto.stream.PositionedCryptoInputStream
Reads the specified number of bytes from a given position within a stream.
readFully(long, byte[]) - ? ????org.apache.commons.crypto.stream.PositionedCryptoInputStream
Reads the specified number of bytes from a given position within a stream.
readFully(InputStream, byte[], int, int) - ? ??????org.apache.commons.crypto.utils.IoUtils
Does the readFully based on the Input read.
readFully(Input, long, byte[], int, int) - ? ??????org.apache.commons.crypto.utils.IoUtils
Does the readFully based on Input's positioned read.
ReflectionUtils - org.apache.commons.crypto.utils???
General utility methods for working with reflection.
reset() - ? ????org.apache.commons.crypto.stream.CryptoInputStream
Overrides the InputStream.reset().
resetCipher(long) - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Calculates the counter and iv, resets the cipher.
resetStreamOffset(long) - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Resets the underlying stream offset; clear CryptoInputStream.inBuffer and CryptoInputStream.outBuffer.

S

seek(long) - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Seeks the stream to a specific position relative to start of the under layer stream.
seek(long) - ? ????org.apache.commons.crypto.stream.input.ChannelInput
Overrides the Input.seek(long).
seek(long) - ?? ????org.apache.commons.crypto.stream.input.Input
Seeks to the given offset from the start of the stream.
seek(long) - ? ????org.apache.commons.crypto.stream.input.StreamInput
Overrides the Input.seek(long).
setStreamOffset(long) - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
Sets the offset of stream.
setStreamOffset(long) - ? ????org.apache.commons.crypto.stream.CtrCryptoOutputStream
Set the underlying stream offset
skip(long) - ? ????org.apache.commons.crypto.stream.CryptoInputStream
Overrides the InputStream.skip(long).
skip(long) - ? ????org.apache.commons.crypto.stream.CtrCryptoInputStream
skip(long) - ? ????org.apache.commons.crypto.stream.input.ChannelInput
Overrides the Input.skip(long).
skip(long) - ?? ????org.apache.commons.crypto.stream.input.Input
Skips over and discards n bytes of data from this input The skip method may, for a variety of reasons, end up skipping over some smaller number of bytes, possibly 0.
skip(long) - ? ????org.apache.commons.crypto.stream.input.StreamInput
Overrides the Input.skip(long).
splitClassNames(String, String) - ? ??????org.apache.commons.crypto.utils.Utils
Splits class names sequence into substrings, Trim each substring into an entry,and returns an list of the entries.
STREAM_BUFFER_SIZE_KEY - ? ??????org.apache.commons.crypto.stream.CryptoInputStream
The configuration key of the buffer size for stream.
StreamInput - org.apache.commons.crypto.stream.input???
The StreamInput class takes a InputStream object and wraps it as Input object acceptable by CryptoInputStream.
StreamInput(InputStream, int) - ? ????org.apache.commons.crypto.stream.input.StreamInput
Constructs a StreamInput.
StreamOutput - org.apache.commons.crypto.stream.output???
The StreamOutput class takes a OutputStream object and wraps it as Output object acceptable by CryptoOutputStream as the output target.
StreamOutput(OutputStream, int) - ? ????org.apache.commons.crypto.stream.output.StreamOutput
Constructs a StreamOutput .

U

update(ByteBuffer, ByteBuffer) - ?? ????org.apache.commons.crypto.cipher.CryptoCipher
Continues a multiple-part encryption/decryption operation.
update(byte[], int, int, byte[], int) - ?? ????org.apache.commons.crypto.cipher.CryptoCipher
Continues a multiple-part encryption/decryption operation.
Utils - org.apache.commons.crypto.utils???
General utility methods.

V

valueOf(String) - ?? ??????org.apache.commons.crypto.cipher.CryptoCipherFactory.CipherProvider
??????????????????
valueOf(String) - ?? ??????org.apache.commons.crypto.random.CryptoRandomFactory.RandomProvider
??????????????????
values() - ?? ??????org.apache.commons.crypto.cipher.CryptoCipherFactory.CipherProvider
???????????????, ?? ??????????
values() - ?? ??????org.apache.commons.crypto.random.CryptoRandomFactory.RandomProvider
???????????????, ?? ??????????

W

write(int) - ? ????org.apache.commons.crypto.stream.CryptoOutputStream
write(byte[], int, int) - ? ????org.apache.commons.crypto.stream.CryptoOutputStream
write(ByteBuffer) - ? ????org.apache.commons.crypto.stream.CryptoOutputStream
write(ByteBuffer) - ? ????org.apache.commons.crypto.stream.output.ChannelOutput
write(ByteBuffer) - ?? ????org.apache.commons.crypto.stream.output.Output
Writes a sequence of bytes to this output from the given buffer.
write(ByteBuffer) - ? ????org.apache.commons.crypto.stream.output.StreamOutput
A C D E F G I J L M N O P R S U V W 
??????

Copyright © 2016 The Apache Software Foundation. All rights reserved.