Uses of Class
hcrypto.analyzer.tool.Dictionary

Packages that use Dictionary
hcrypto.analyzer.evolutionary   
hcrypto.analyzer.tool   
 

Uses of Dictionary in hcrypto.analyzer.evolutionary
 

Methods in hcrypto.analyzer.evolutionary that return Dictionary
 Dictionary WordBasedGaPopulation.getEvalDict()
           
 

Constructors in hcrypto.analyzer.evolutionary with parameters of type Dictionary
WordBasedGaIndividual(java.lang.String text, java.lang.String initKey, Dictionary d, GaParameters p)
          This constructor takes an initial distribution for the key as a parameter.
 

Uses of Dictionary in hcrypto.analyzer.tool
 

Subclasses of Dictionary in hcrypto.analyzer.tool
 class PatternDictionary
          Implements a searchable dictionary of words and their relative frequencies.
 

Methods in hcrypto.analyzer.tool that return Dictionary
static Dictionary TextUtilities.getDictionary()
          This method returns the English frequency of a given character.
 

Methods in hcrypto.analyzer.tool with parameters of type Dictionary
static int TextUtilities.countWords(Dictionary eval_dict, java.lang.String text)
          countWords() counts the number of words in the text by looking up each token in the current dictionary
static boolean TextUtilities.isAWord(Dictionary dict, java.lang.String word)
           
static java.lang.String TextUtilities.markWords(Dictionary eval_dict, java.lang.String s)