Uses of Class
ccs.crypt.Cipher

Packages that use Cipher
ccs.beetree A B-Tree-based BLOB persistence engine. 
ccs.cdb Object-persistence layer on top of the BeeTree BLOB-persistence engine. 
ccs.crypt Symmetric cryptographic primitives. 
 

Uses of Cipher in ccs.beetree
 

Fields in ccs.beetree declared as Cipher
protected  Cipher BeeObject.cipher
          The Cipher object which should be used to encrypt this object.
 

Methods in ccs.beetree that return Cipher
 Cipher BeeTree.getCipherFor(byte[] password)
          Returns a configured Cipher corresponding to the current cipher version and the supplied password.
 Cipher BeeTree.getCipherInstance()
          Returns a new, uninitialised instance of the Cipher corresponding to the current Cipher version.
 Cipher BeeTree.getNullCipherInstance()
          Returns a new, uninitialised instance of the Cipher the tree uses when it's not actually encrypted.
 

Uses of Cipher in ccs.cdb
 

Methods in ccs.cdb that return Cipher
 Cipher CDBeeTree.getCipherInstance()
          Returns a new, uninitialised instance of the Cipher corresponding to the current Cipher version.
 Cipher CDBeeTree.getNullCipherInstance()
          Returns a new, uninitialised instance of the Cipher the tree uses when it's not actually encrypted.
 

Uses of Cipher in ccs.crypt
 

Subclasses of Cipher in ccs.crypt
 class AbstractBlockCipher
          A cipher which works on a sequence of blocks.
 class BCCHBlockCipher
          A block cipher which uses BouncyCastle for the cryptographic primitives, in CBC mode with HMAC authentication.
static class BCCHBlockCipher.AES
           
static class BCCHBlockCipher.Blowfish
           
 class NullCipher
          A Null Cipher.