Uses of Interface
com.digt.trusted.crypto.BlockCipher

Packages that use BlockCipher
com.digt.trusted.crypto   
com.digt.trusted.crypto.engines   
com.digt.trusted.crypto.modes   
com.digt.trusted.crypto.paddings   
com.digt.trusted.jce.provider   
 

Uses of BlockCipher in com.digt.trusted.crypto
 

Fields in com.digt.trusted.crypto declared as BlockCipher
protected  BlockCipher BufferedBlockCipher.cipher
           
 

Methods in com.digt.trusted.crypto that return BlockCipher
 BlockCipher BufferedBlockCipher.getUnderlyingCipher()
          return the cipher this object wraps.
 

Constructors in com.digt.trusted.crypto with parameters of type BlockCipher
BufferedBlockCipher(BlockCipher cipher)
          Create a buffered block cipher without padding.
StreamBlockCipher(BlockCipher cipher)
          basic constructor.
 

Uses of BlockCipher in com.digt.trusted.crypto.engines
 

Classes in com.digt.trusted.crypto.engines that implement BlockCipher
 class GOST28147Engine
          a class that provides a basic GOST28147 engine.
 

Uses of BlockCipher in com.digt.trusted.crypto.modes
 

Classes in com.digt.trusted.crypto.modes that implement BlockCipher
 class CBCBlockCipher
          implements Cipher-Block-Chaining (CBC) mode on top of a simple cipher.
 class CFBBlockCipher
          implements a Cipher-FeedBack (CFB) mode on top of a simple cipher.
 class OFBBlockCipher
          implements a Output-FeedBack (OFB) mode on top of a simple cipher.
 

Methods in com.digt.trusted.crypto.modes that return BlockCipher
 BlockCipher CBCBlockCipher.getUnderlyingCipher()
          return the underlying block cipher that we are wrapping.
 BlockCipher CFBBlockCipher.getUnderlyingCipher()
          return the underlying block cipher that we are wrapping.
 BlockCipher OFBBlockCipher.getUnderlyingCipher()
          return the underlying block cipher that we are wrapping.
 

Constructors in com.digt.trusted.crypto.modes with parameters of type BlockCipher
CBCBlockCipher(BlockCipher cipher)
          Basic constructor.
CFBBlockCipher(BlockCipher cipher, int bitBlockSize)
          Basic constructor.
OFBBlockCipher(BlockCipher cipher, int blockSize)
          Basic constructor.
 

Uses of BlockCipher in com.digt.trusted.crypto.paddings
 

Constructors in com.digt.trusted.crypto.paddings with parameters of type BlockCipher
PaddedBufferedBlockCipher(BlockCipher cipher)
          Create a buffered block cipher PKCS7 padding
PaddedBufferedBlockCipher(BlockCipher cipher, BlockCipherPadding padding)
          Create a buffered block cipher with the desired padding.
 

Uses of BlockCipher in com.digt.trusted.jce.provider
 

Constructors in com.digt.trusted.jce.provider with parameters of type BlockCipher
JCEBlockCipher(BlockCipher engine)
           
JCEBlockCipher(BlockCipher engine, int ivLength)
           
JCEBlockCipher(BlockCipher engine, int pbeType, int pbeHash, int pbeKeySize, int pbeIvSize)
           
JCEStreamCipher(BlockCipher engine, int ivLength)