Uses of Class
org.apache.commons.crypto.stream.PositionedCryptoInputStream.CipherState
Packages that use PositionedCryptoInputStream.CipherState
-
Uses of PositionedCryptoInputStream.CipherState in org.apache.commons.crypto.stream
Fields in org.apache.commons.crypto.stream with type parameters of type PositionedCryptoInputStream.CipherStateModifier and TypeFieldDescriptionprivate final Queue
<PositionedCryptoInputStream.CipherState> PositionedCryptoInputStream.cipherStatePool
CryptoCipher poolMethods in org.apache.commons.crypto.stream that return PositionedCryptoInputStream.CipherStateModifier and TypeMethodDescriptionPositionedCryptoInputStream.getCipherState()
Gets CryptoCipher from pool.Methods in org.apache.commons.crypto.stream with parameters of type PositionedCryptoInputStream.CipherStateModifier and TypeMethodDescriptionprivate void
PositionedCryptoInputStream.decrypt
(PositionedCryptoInputStream.CipherState state, ByteBuffer inByteBuffer, ByteBuffer outByteBuffer, byte padding) Does the decryption using inBuffer as input and outBuffer as output.private void
PositionedCryptoInputStream.decryptBuffer
(PositionedCryptoInputStream.CipherState state, ByteBuffer inByteBuffer, ByteBuffer outByteBuffer) Does the decryption using inBuffer as input and outBuffer as output.private byte
PositionedCryptoInputStream.postDecryption
(PositionedCryptoInputStream.CipherState state, ByteBuffer inByteBuffer, long position, byte[] iv) This method is executed immediately after decryption.private void
PositionedCryptoInputStream.resetCipher
(PositionedCryptoInputStream.CipherState state, long position, byte[] iv) Calculates the counter and iv, reset the cipher.private void
PositionedCryptoInputStream.returnToPool
(PositionedCryptoInputStream.CipherState state) Returns CryptoCipher to pool.