Uses of Interface
org.apache.commons.crypto.cipher.CryptoCipher
Packages that use CryptoCipher
Package
Description
CryptoCipher classes
JNA classes
Stream classes
Utils classes
-
Uses of CryptoCipher in org.apache.commons.crypto.cipher
Classes in org.apache.commons.crypto.cipher that implement CryptoCipherModifier and TypeClassDescription(package private) class
Implements theCryptoCipher
using JCE provider.(package private) final class
Implements the CryptoCipher using JNI into OpenSSL.Fields in org.apache.commons.crypto.cipher with type parameters of type CryptoCipherModifier and TypeFieldDescriptionprivate final Class
<? extends CryptoCipher> CryptoCipherFactory.CipherProvider.klass
Methods in org.apache.commons.crypto.cipher that return CryptoCipherModifier and TypeMethodDescriptionstatic CryptoCipher
CryptoCipherFactory.getCryptoCipher
(String transformation) Gets a cipher for algorithm/mode/padding in config value commons.crypto.cipher.transformationstatic CryptoCipher
CryptoCipherFactory.getCryptoCipher
(String transformation, Properties properties) Gets a cipher instance for specified algorithm/mode/padding.Methods in org.apache.commons.crypto.cipher that return types with arguments of type CryptoCipherModifier and TypeMethodDescriptionClass
<? extends CryptoCipher> CryptoCipherFactory.CipherProvider.getImplClass()
Gets the implementation class of the provider.Constructor parameters in org.apache.commons.crypto.cipher with type arguments of type CryptoCipherModifierConstructorDescriptionprivate
CipherProvider
(Class<? extends CryptoCipher> klass) The private constructor. -
Uses of CryptoCipher in org.apache.commons.crypto.jna
Classes in org.apache.commons.crypto.jna that implement CryptoCipherModifier and TypeClassDescription(package private) final class
Implements the CryptoCipher using JNA into OpenSSL.Methods in org.apache.commons.crypto.jna that return types with arguments of type CryptoCipherModifier and TypeMethodDescriptionstatic Class
<? extends CryptoCipher> OpenSslJna.getCipherClass()
-
Uses of CryptoCipher in org.apache.commons.crypto.stream
Fields in org.apache.commons.crypto.stream declared as CryptoCipherModifier and TypeFieldDescription(package private) final CryptoCipher
CryptoInputStream.cipher
The CryptoCipher instance.(package private) final CryptoCipher
CryptoOutputStream.cipher
the CryptoCipher instanceprivate final CryptoCipher
PositionedCryptoInputStream.CipherState.cryptoCipher
Methods in org.apache.commons.crypto.stream that return CryptoCipherModifier and TypeMethodDescriptionprotected CryptoCipher
CryptoInputStream.getCipher()
Gets the internal CryptoCipher.protected CryptoCipher
CryptoOutputStream.getCipher()
Gets the internal Cipher.PositionedCryptoInputStream.CipherState.getCryptoCipher()
Gets the CryptoCipher instance.Methods in org.apache.commons.crypto.stream with parameters of type CryptoCipherModifier and TypeMethodDescription(package private) static int
CryptoInputStream.checkBufferSize
(CryptoCipher cipher, int bufferSize) Checks and floors buffer size.(package private) static void
CryptoInputStream.checkStreamCipher
(CryptoCipher cipher) Checks whether the cipher is supported streaming.Constructors in org.apache.commons.crypto.stream with parameters of type CryptoCipherModifierConstructorDescriptionCipherState
(CryptoCipher cryptoCipher) Constructs a new instance.protected
CryptoInputStream
(InputStream inputStream, CryptoCipher cipher, int bufferSize, Key key, AlgorithmParameterSpec params) Constructs aCryptoInputStream
.protected
CryptoInputStream
(ReadableByteChannel channel, CryptoCipher cipher, int bufferSize, Key key, AlgorithmParameterSpec params) Constructs aCryptoInputStream
.protected
CryptoInputStream
(Input input, CryptoCipher cipher, int bufferSize, Key key, AlgorithmParameterSpec params) Constructs aCryptoInputStream
.protected
CryptoOutputStream
(OutputStream outputStream, CryptoCipher cipher, int bufferSize, Key key, AlgorithmParameterSpec params) Constructs aCryptoOutputStream
.protected
CryptoOutputStream
(WritableByteChannel channel, CryptoCipher cipher, int bufferSize, Key key, AlgorithmParameterSpec params) Constructs aCryptoOutputStream
.protected
CryptoOutputStream
(Output output, CryptoCipher cipher, int bufferSize, Key key, AlgorithmParameterSpec params) Constructs aCryptoOutputStream
.protected
CtrCryptoInputStream
(InputStream inputStream, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv) Constructs aCtrCryptoInputStream
.protected
CtrCryptoInputStream
(InputStream inputStream, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv, long streamOffset) Constructs aCtrCryptoInputStream
.protected
CtrCryptoInputStream
(ReadableByteChannel channel, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv) Constructs aCtrCryptoInputStream
.protected
CtrCryptoInputStream
(ReadableByteChannel channel, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv, long streamOffset) Constructs aCtrCryptoInputStream
.protected
CtrCryptoInputStream
(Input input, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv) Constructs aCtrCryptoInputStream
.protected
CtrCryptoInputStream
(Input input, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv, long streamOffset) Constructs aCtrCryptoInputStream
.protected
CtrCryptoOutputStream
(OutputStream out, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv) Constructs aCtrCryptoOutputStream
.protected
CtrCryptoOutputStream
(OutputStream outputStream, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv, long streamOffset) Constructs aCtrCryptoOutputStream
.protected
CtrCryptoOutputStream
(WritableByteChannel channel, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv) Constructs aCtrCryptoOutputStream
.protected
CtrCryptoOutputStream
(WritableByteChannel channel, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv, long streamOffset) Constructs aCtrCryptoOutputStream
.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
.protected
PositionedCryptoInputStream
(Properties properties, Input input, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv, long streamOffset) Constructs aPositionedCryptoInputStream
. -
Uses of CryptoCipher in org.apache.commons.crypto.utils
Methods in org.apache.commons.crypto.utils that return CryptoCipherModifier and TypeMethodDescriptionstatic CryptoCipher
Utils.getCipherInstance
(String transformation, Properties properties) Helper method to create a CryptoCipher instance and throws only IOException.