For the latest news and information visit
The GNU Crypto project

Uses of Class
gnu.crypto.assembly.Transformer

Packages that use Transformer
gnu.crypto.assembly Provides a high-level API for combining and using GNU Crypto cipher, mode, and padding primitives.  
 

Uses of Transformer in gnu.crypto.assembly
 

Subclasses of Transformer in gnu.crypto.assembly
(package private)  class CascadeTransformer
          An Adapter to use any Cascade as a Transformer in an Assembly.
(package private)  class DeflateTransformer
          A Transformer Adapter allowing inclusion of a DEFLATE compression algorithm in an Assembly chain.
(package private)  class LoopbackTransformer
          A trivial Transformer to allow closing a chain in an Assembly.
(package private)  class PaddingTransformer
          An Adapter to use any IPad as a Transformer in an Assembly.
 

Fields in gnu.crypto.assembly declared as Transformer
protected  Transformer Transformer.tail
           
 

Methods in gnu.crypto.assembly that return Transformer
static Transformer Transformer.getCascadeTransformer(Cascade cascade)
           
static Transformer Transformer.getPaddingTransformer(IPad padding)
           
static Transformer Transformer.getDeflateTransformer()
           
 

Methods in gnu.crypto.assembly with parameters of type Transformer
 void Assembly.addPreTransformer(Transformer t)
          Adds the designated Transformer and signals that it should operate in pre-processing mode; i.e. it should apply its internal transformation algorithm on the input data stream, before it passes that stream to the next element in the chain.
 void Assembly.addPostTransformer(Transformer t)
          Adds the designated Transformer and signals that it should operate in post-processing mode; i.e. it should apply its internal transformation algorithm on the input data stream, after it passes that stream to the next element in the chain.
 


For the latest news and information visit
The GNU Crypto project

Copyright © 2001, 2002, 2003 Free Software Foundation, Inc. All Rights Reserved.