Uses of Interface
org.apache.fulcrum.jce.crypto.CryptoStreamFactory
-
Packages that use CryptoStreamFactory Package Description org.apache.fulcrum.jce.crypto org.apache.fulcrum.jce.crypto.algo org.apache.fulcrum.jce.crypto.extended -
-
Uses of CryptoStreamFactory in org.apache.fulcrum.jce.crypto
Classes in org.apache.fulcrum.jce.crypto that implement CryptoStreamFactory Modifier and Type Class Description class
CryptoStreamFactoryImpl
Concrete factory for creating encrypting/decrypting streams.class
CryptoStreamFactoryTemplate
Concrete factory for creating encrypting/decrypting streams.Fields in org.apache.fulcrum.jce.crypto declared as CryptoStreamFactory Modifier and Type Field Description protected CryptoStreamFactory
CryptoUtil. cryptoStreamFactory
protected static CryptoStreamFactory
CryptoStreamFactoryTemplate. instance
the default instanceMethods in org.apache.fulcrum.jce.crypto that return CryptoStreamFactory Modifier and Type Method Description CryptoStreamFactory
CryptoUtil. getCryptoStreamFactory()
static CryptoStreamFactory
CryptoStreamFactoryImpl. getInstance()
Factory method to get a default instancestatic CryptoStreamFactory
CryptoStreamFactoryImpl. getInstance(byte[] salt, int count)
Factory method to get a default instancestatic CryptoStreamFactory
CryptoStreamFactoryTemplate. getInstance()
Methods in org.apache.fulcrum.jce.crypto with parameters of type CryptoStreamFactory Modifier and Type Method Description protected void
CryptoUtil. decrypt(CryptoStreamFactory factory, Object source, Object target, char[] password)
Copies from a source to a target object using decryption and a caller-suppier CryptoStreamFactory.String
CryptoUtil. decryptString(CryptoStreamFactory factory, String cipherText, char[] password)
Decrypts an encrypted string into the plain text.void
CryptoUtil. encrypt(CryptoStreamFactory factory, Object source, Object target, char[] password)
Copies from a source to a target object using encryption and a caller supplied CryptoStreamFactory.String
CryptoUtil. encryptString(CryptoStreamFactory factory, String plainText, char[] password, boolean withClearCode)
Encrypts a string into a hex string.static void
CryptoStreamFactoryImpl. setInstance(CryptoStreamFactory instance)
Set the default instance from an external application.static void
CryptoStreamFactoryTemplate. setInstance(CryptoStreamFactory instance)
Constructors in org.apache.fulcrum.jce.crypto with parameters of type CryptoStreamFactory Constructor Description SmartDecryptingInputStream(CryptoStreamFactory cryptoStreamFactory, InputStream is)
ConstructorSmartDecryptingInputStream(CryptoStreamFactory cryptoStreamFactory, InputStream is, char[] password)
Constructor -
Uses of CryptoStreamFactory in org.apache.fulcrum.jce.crypto.algo
Classes in org.apache.fulcrum.jce.crypto.algo that implement CryptoStreamFactory Modifier and Type Class Description class
CryptoStreamGCMImpl
Concrete implementation for creating encrypting/decrypting streams.class
CryptoStreamPBEImpl
Concrete implementation for creating encrypting/decrypting streams. -
Uses of CryptoStreamFactory in org.apache.fulcrum.jce.crypto.extended
Subinterfaces of CryptoStreamFactory in org.apache.fulcrum.jce.crypto.extended Modifier and Type Interface Description interface
CryptoStreamFactoryJ8
Interface for creating encrypting/decrypting streams.Classes in org.apache.fulcrum.jce.crypto.extended that implement CryptoStreamFactory Modifier and Type Class Description class
CryptoStreamFactoryJ8Template
Concrete factory for creating encrypting/decrypting streams.Methods in org.apache.fulcrum.jce.crypto.extended with parameters of type CryptoStreamFactory Modifier and Type Method Description protected void
CryptoUtilJ8. decrypt(CryptoStreamFactory factory, Object source, Object target, char[] password)
Copies from a source to a target object using decryption and a caller-suppier CryptoStreamFactory.void
CryptoUtilJ8. encrypt(CryptoStreamFactory factory, Object source, Object target, char[] password)
Copies from a source to a target object using encryption and a caller supplied CryptoStreamFactory.
-