|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of CryptoStreamFactory in org.apache.fulcrum.jce.crypto |
---|
Classes in org.apache.fulcrum.jce.crypto that implement CryptoStreamFactory | |
---|---|
class |
CryptoStreamFactoryImpl
Concrete factory for creating encrypting/decrypting streams. |
Methods in org.apache.fulcrum.jce.crypto that return CryptoStreamFactory | |
---|---|
static CryptoStreamFactory |
CryptoUtil.getCryptoStreamFactory()
|
static CryptoStreamFactory |
CryptoStreamFactoryImpl.getInstance()
Factory method to get a default instance |
Methods in org.apache.fulcrum.jce.crypto with parameters of type CryptoStreamFactory | |
---|---|
static 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. |
static String |
CryptoUtil.decryptString(CryptoStreamFactory factory,
String cipherText,
char[] password)
Decrypts an encrypted string into the plain text. |
static 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. |
static String |
CryptoUtil.encryptString(CryptoStreamFactory factory,
String plainText,
char[] password)
Encrypts a string into a hex string. |
static void |
CryptoStreamFactoryImpl.setInstance(CryptoStreamFactory instance)
Set the default instance from an external application. |
Constructors in org.apache.fulcrum.jce.crypto with parameters of type CryptoStreamFactory | |
---|---|
SmartDecryptingInputStream(CryptoStreamFactory cryptoStreamFactory,
InputStream is)
Constructor |
|
SmartDecryptingInputStream(CryptoStreamFactory cryptoStreamFactory,
InputStream is,
char[] password)
Constructor |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |