Uses of Class
hcrypto.cipher.HistoricalKey

Packages that use HistoricalKey
hcrypto.cipher   
hcrypto.engines   
 

Uses of HistoricalKey in hcrypto.cipher
 

Methods in hcrypto.cipher that return HistoricalKey
static HistoricalKey HistoricalKey.getInstance(java.lang.String algorithm, java.lang.String provider)
          searches for the provider named in the second parameter for an implementation of the algorithm named in its first parameter.
 

Methods in hcrypto.cipher with parameters of type HistoricalKey
 void Cipher.init(HistoricalKey key)
          initializes the particular encrypting engine by calling the encapsulated CipherEngine and passing it a key of the appropriate type.
 

Uses of HistoricalKey in hcrypto.engines
 

Subclasses of HistoricalKey in hcrypto.engines
 class AffineKey
          Represents a key for an Affine cipher.
 class CaesarKey
          Represents a key for a Caesar (shift) cipher.
 class NullKey
          Represents a null key--i.e., a key for a trivial cipher that makes no transformation to the plaintext.
 class PlayfairKey
          Represents a key for a Playfair cipher.
 class PolySubstitutionKey
          Represents a key for a PolySubstitution cipher (which many authors call a Homophonic Substitution).
 class RailfenceKey
          Implements the Railfence Key The keyspec, described in TestCipher.java is passed to this file where the blocksize, key and alphabet range is extracted.
 class SubstitutionKey
          Represents a key for a Simple Substitution cipher.
 class TranspositionKey
          Represents a key for a Transposition cipher.
 class VigenereKey
          Represents a key for a Vigenere cipher.