Uses of Class
hcrypto.analyzer.CryptoAnalyzer

Packages that use CryptoAnalyzer
applications.cryptotoolj   
hcrypto.analyzer   
hcrypto.analyzer.evolutionary   
hcrypto.analyzer.tool   
pluginanalyzers   
 

Uses of CryptoAnalyzer in applications.cryptotoolj
 

Methods in applications.cryptotoolj with parameters of type CryptoAnalyzer
 void AnalyzerFrame.setAnalyzer(CryptoAnalyzer a)
           
 

Constructors in applications.cryptotoolj with parameters of type CryptoAnalyzer
AnalyzerFrame(CryptoAnalyzer a, java.lang.String text, java.lang.String params)
           
 

Uses of CryptoAnalyzer in hcrypto.analyzer
 

Subclasses of CryptoAnalyzer in hcrypto.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 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 CryptoAnalyzer in hcrypto.analyzer.evolutionary
 

Subclasses of CryptoAnalyzer in hcrypto.analyzer.evolutionary
 class GaAnalyzer
          Superclass for all GaAnalyzers.
 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 CryptoAnalyzer in hcrypto.analyzer.tool
 

Subclasses of CryptoAnalyzer in hcrypto.analyzer.tool
 class EnglishFacts
          Displays some general facts about English text.
 

Uses of CryptoAnalyzer in pluginanalyzers
 

Subclasses of CryptoAnalyzer in pluginanalyzers
 class NullAnalyzer
          Trivial analyzer class.
 class TestAnalyzer
          Description: An implementation of a trivial Analyzer plugin.