Uses of Class
org.apache.commons.crypto.stream.PositionedCryptoInputStream.CipherState
-
Packages that use PositionedCryptoInputStream.CipherState Package Description org.apache.commons.crypto.stream Stream classes -
-
Uses of PositionedCryptoInputStream.CipherState in org.apache.commons.crypto.stream
Fields in org.apache.commons.crypto.stream with type parameters of type PositionedCryptoInputStream.CipherState Modifier and Type Field Description private java.util.Queue<PositionedCryptoInputStream.CipherState>
PositionedCryptoInputStream. cipherStatePool
CryptoCipher poolMethods in org.apache.commons.crypto.stream that return PositionedCryptoInputStream.CipherState Modifier and Type Method Description private PositionedCryptoInputStream.CipherState
PositionedCryptoInputStream. getCipherState()
Gets CryptoCipher from pool.Methods in org.apache.commons.crypto.stream with parameters of type PositionedCryptoInputStream.CipherState Modifier and Type Method Description private void
PositionedCryptoInputStream. decrypt(PositionedCryptoInputStream.CipherState state, java.nio.ByteBuffer inByteBuffer, java.nio.ByteBuffer outByteBuffer, byte padding)
Does the decryption using inBuffer as input and outBuffer as output.private void
PositionedCryptoInputStream. decryptBuffer(PositionedCryptoInputStream.CipherState state, java.nio.ByteBuffer inByteBuffer, java.nio.ByteBuffer outByteBuffer)
Does the decryption using inBuffer as input and outBuffer as output.private byte
PositionedCryptoInputStream. postDecryption(PositionedCryptoInputStream.CipherState state, java.nio.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.
-