Esempio n. 1
0
 public saferForm()
 {
     InitializeComponent();
     sfr     = new Safer.Safer();
     modeEcb = new ModeEcb();
     modeCbc = new ModeCbc();
     modeCfb = new ModeCfb();
     modeOfb = new ModeOfb();
     ofd     = new OpenFileDialog();
 }
 public loadingForm(Safer.Safer sfr, string IV, int N, IMode currentMode, string path, string action)
 {
     _sfr         = sfr;
     _iv          = IV;
     _n           = N;
     _currentMode = currentMode;
     _path        = path;
     _action      = action;
     _token       = new CancellationTokenSource();
     InitializeComponent();
 }