Uses of Interface
AbstractionFuncs.AbstractionFunct

Packages that use AbstractionFunct
AbstractionFuncs   
FuzzingEngine   
ProtocolLearner   
ProxyServer   
 

Uses of AbstractionFunct in AbstractionFuncs
 

Classes in AbstractionFuncs that implement AbstractionFunct
 class FTPinputAbstraction
          Abstraction function for the input requests to ftp server.
 class FTPoutputAbstraction
           
 class MSNinputAbstraction
          Abstraction function for the input messages of the MSN protocol
 class MSNoutputAbstraction
          An abstraction function for the output messages of the MSN protocol
 class SMTPinputAbstraction
          Abstraction function for the input messages of the SMTP protocol
 class SMTPoutputAbstraction
          An abstraction function for the output messages of the SMTP protocol
 

Uses of AbstractionFunct in FuzzingEngine
 

Constructors in FuzzingEngine with parameters of type AbstractionFunct
FuzzerMain(FSAutomaton automatonToFuzz, AbstractionFunct iabf, java.util.ArrayList<MessageTrace> traces, javax.swing.JTextArea fuzzArea)
           
 

Uses of AbstractionFunct in ProtocolLearner
 

Methods in ProtocolLearner with parameters of type AbstractionFunct
 FSAutomaton PassiveLearner.constructAutomaton(java.util.ArrayList<MessageTrace> traces, AbstractionFunct input, AbstractionFunct output)
          Constructs a FSM from a sample of message traces and input/output abstraction function
 FSAutomaton PassiveLearner.minimizeAutomaton(FSAutomaton inputAutomaton, java.util.ArrayList<MessageTrace> traces, AbstractionFunct input, AbstractionFunct output)
          Minimizes a finite state automaton by reducing similar states And restores the loops that were initially removed from the automaton
 void PassiveLearner.setTraceLoops(MessageTrace trace, AbstractionFunct inab)
          Identifies loops in the trace
 

Uses of AbstractionFunct in ProxyServer
 

Methods in ProxyServer with parameters of type AbstractionFunct
 void ProxyDataManipulator.initializerFuzzer(FSAutomaton in, AbstractionFunct abf)