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) classImplements theCryptoCipherusing JCE provider.(package private) final classImplements 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.klassMethods in org.apache.commons.crypto.cipher that return CryptoCipherModifier and TypeMethodDescriptionstatic CryptoCipherCryptoCipherFactory.getCryptoCipher(String transformation) Gets a cipher for algorithm/mode/padding in config value commons.crypto.cipher.transformationstatic CryptoCipherCryptoCipherFactory.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 CryptoCipherModifierConstructorDescriptionprivateCipherProvider(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 classImplements 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 CryptoCipherCryptoInputStream.cipherThe CryptoCipher instance.(package private) final CryptoCipherCryptoOutputStream.cipherthe CryptoCipher instanceprivate final CryptoCipherPositionedCryptoInputStream.CipherState.cryptoCipherMethods in org.apache.commons.crypto.stream that return CryptoCipherModifier and TypeMethodDescriptionprotected CryptoCipherCryptoInputStream.getCipher()Gets the internal CryptoCipher.protected CryptoCipherCryptoOutputStream.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 intCryptoInputStream.checkBufferSize(CryptoCipher cipher, int bufferSize) Checks and floors buffer size.(package private) static voidCryptoInputStream.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.protectedCryptoInputStream(InputStream inputStream, CryptoCipher cipher, int bufferSize, Key key, AlgorithmParameterSpec params) Constructs aCryptoInputStream.protectedCryptoInputStream(ReadableByteChannel channel, CryptoCipher cipher, int bufferSize, Key key, AlgorithmParameterSpec params) Constructs aCryptoInputStream.protectedCryptoInputStream(Input input, CryptoCipher cipher, int bufferSize, Key key, AlgorithmParameterSpec params) Constructs aCryptoInputStream.protectedCryptoOutputStream(OutputStream outputStream, CryptoCipher cipher, int bufferSize, Key key, AlgorithmParameterSpec params) Constructs aCryptoOutputStream.protectedCryptoOutputStream(WritableByteChannel channel, CryptoCipher cipher, int bufferSize, Key key, AlgorithmParameterSpec params) Constructs aCryptoOutputStream.protectedCryptoOutputStream(Output output, CryptoCipher cipher, int bufferSize, Key key, AlgorithmParameterSpec params) Constructs aCryptoOutputStream.protectedCtrCryptoInputStream(InputStream inputStream, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv) Constructs aCtrCryptoInputStream.protectedCtrCryptoInputStream(InputStream inputStream, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv, long streamOffset) Constructs aCtrCryptoInputStream.protectedCtrCryptoInputStream(ReadableByteChannel channel, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv) Constructs aCtrCryptoInputStream.protectedCtrCryptoInputStream(ReadableByteChannel channel, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv, long streamOffset) Constructs aCtrCryptoInputStream.protectedCtrCryptoInputStream(Input input, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv) Constructs aCtrCryptoInputStream.protectedCtrCryptoInputStream(Input input, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv, long streamOffset) Constructs aCtrCryptoInputStream.protectedCtrCryptoOutputStream(OutputStream out, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv) Constructs aCtrCryptoOutputStream.protectedCtrCryptoOutputStream(OutputStream outputStream, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv, long streamOffset) Constructs aCtrCryptoOutputStream.protectedCtrCryptoOutputStream(WritableByteChannel channel, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv) Constructs aCtrCryptoOutputStream.protectedCtrCryptoOutputStream(WritableByteChannel channel, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv, long streamOffset) Constructs aCtrCryptoOutputStream.protectedCtrCryptoOutputStream(Output output, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv) Constructs aCtrCryptoOutputStream.protectedCtrCryptoOutputStream(Output output, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv, long streamOffset) Constructs aCtrCryptoOutputStream.protectedPositionedCryptoInputStream(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 CryptoCipherUtils.getCipherInstance(String transformation, Properties properties) Helper method to create a CryptoCipher instance and throws only IOException.