Uses of Interface
org.apache.fulcrum.jce.crypto.CryptoStreamFactory

Packages that use CryptoStreamFactory
org.apache.fulcrum.jce.crypto   
 

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, java.lang.Object source, java.lang.Object target, char[] password)
          Copies from a source to a target object using decryption and a caller-suppier CryptoStreamFactory.
static java.lang.String CryptoUtil.decryptString(CryptoStreamFactory factory, java.lang.String cipherText, char[] password)
          Decrypts an encrypted string into the plain text.
static void CryptoUtil.encrypt(CryptoStreamFactory factory, java.lang.Object source, java.lang.Object target, char[] password)
          Copies from a source to a target object using encryption and a caller supplied CryptoStreamFactory.
static java.lang.String CryptoUtil.encryptString(CryptoStreamFactory factory, java.lang.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, java.io.InputStream is)
          Constructor
SmartDecryptingInputStream(CryptoStreamFactory cryptoStreamFactory, java.io.InputStream is, char[] password)
          Constructor
 



Copyright © 2000-2008 Apache Software Foundation. All Rights Reserved.