Uses of Interface
hcrypto.analyzer.Analyzer

Packages that use Analyzer
hcrypto.analyzer   
hcrypto.analyzer.evolutionary   
hcrypto.analyzer.tool   
pluginanalyzers   
 

Uses of Analyzer in hcrypto.analyzer
 

Subinterfaces of Analyzer in hcrypto.analyzer
 interface ExpertAnalyzer
           
 

Classes in hcrypto.analyzer that implement Analyzer
 class AffineAnalyzer
          Description: This class assumes that the text it is passed is encrypted with an Affine engine.
 class CaesarAnalyzer
          Assumes that the text it is passed is encrypted with a Caesar shift.
 class CryptoAnalyzer
          Serves as the foundation for all cryptologic analyzers, including GA analyzers.
 class DigramAnalyzer
          Analyzes traditional cryptograms of the sort you find in the newspaper.
 class VigenereAnalyzer
          Assumes that the text it is passed is encrypted with a Vigenere cipher.
 class WordBasedAnalyzer
          Analyzes traditional cryptograms of the sort you find in the newspaper.
 

Uses of Analyzer in hcrypto.analyzer.evolutionary
 

Classes in hcrypto.analyzer.evolutionary that implement Analyzer
 class GaAnalyzer
          Superclass for all GaAnalyzers.
 class NgramArray
           
 class NgramGaAnalyzer
          Assumes that the text is encrypted with simple substitution cipher and uses a frequency-based genetic algorithm to analyze it.
 class WordBasedGaAnalyzer
          Assumes that the text is encrypted with simple substitution and uses a word-based genetic algorithm to analyze it.
 

Uses of Analyzer in hcrypto.analyzer.tool
 

Classes in hcrypto.analyzer.tool that implement Analyzer
 class EnglishFacts
          Displays some general facts about English text.
 class FrequencyTable
           
 class IndexOfCoincidence
           
 class PatternWordSearcher
          This analyzer displays pattern words.
 class TextAnalyzer
          Creates a frame in which frequency data are displayed.
 class TextStatistics
          Defines a SINGLETON object that is designed to compute and store various useful statistics for a give text.
 

Uses of Analyzer in pluginanalyzers
 

Classes in pluginanalyzers that implement Analyzer
 class NullAnalyzer
          Trivial analyzer class.
 class TestAnalyzer
          Description: An implementation of a trivial Analyzer plugin.