Uses of Interface
org.clazzes.optional.sec.BlockCipher

Packages that use BlockCipher
org.clazzes.optional.sec   
 

Uses of BlockCipher in org.clazzes.optional.sec
 

Subinterfaces of BlockCipher in org.clazzes.optional.sec
 interface AEADBlockCipher
          A block cipher mode that includes authenticated encryption with a streaming mode and optional associated data.
 

Classes in org.clazzes.optional.sec that implement BlockCipher
 class AESCipher
          Implementation of AES base copied from bouncycastle's AESFastEngine.
 class CBCCipher
          CBC cipher mode for symmetric ciphers.
 class GCMCipher
          galois counter mode for symmetric ciphers.
 

Methods in org.clazzes.optional.sec that return BlockCipher
 BlockCipher GCMCipher.getUnderlyingCipher()
           
 BlockCipher AESCipher.getUnderlyingCipher()
           
 BlockCipher BlockCipher.getUnderlyingCipher()
          return the underlying block cipher that we are wrapping or null, if we do wrap another cipher.
 BlockCipher CBCCipher.getUnderlyingCipher()
          return the underlying block cipher that we are wrapping.
 

Constructors in org.clazzes.optional.sec with parameters of type BlockCipher
CBCCipher(BlockCipher cipher)
          Basic constructor.
GCMCipher(BlockCipher c)
           
GCMCipher(BlockCipher c, GCMMultiplier m)
           
 



Copyright © 2010. All Rights Reserved.