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
Methods 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. -
Uses of CryptoCipher in org.apache.commons.crypto.jna
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
Methods in org.apache.commons.crypto.stream that return CryptoCipherModifier and TypeMethodDescriptionprotected CryptoCipherCryptoInputStream.getCipher()Gets the internal CryptoCipher.protected CryptoCipherCryptoOutputStream.getCipher()Gets the internal Cipher.Constructors in org.apache.commons.crypto.stream with parameters of type CryptoCipherModifierConstructorDescriptionprotectedCryptoInputStream(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.