Exemplo n.º 1
0
 private void Form1_Load(object sender, EventArgs e)
 {
     AllocConsole();
     Console.Title = "FileBurn - Console";
     Console.Write("Copyright (C) 2014 Jacopo De Luca\nThis program is free software.\n\nThis program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY!\nsee <http://www.gnu.org/licenses/>.\n\n");
     this.ProcessIdentifier();
     rndB = new RndByte(this.rndType ? RndByte.RndType.TRNG : RndByte.RndType.PRNG);
 }
Exemplo n.º 2
0
 private void Form1_Load(object sender, EventArgs e)
 {
     AllocConsole();
     Console.Title = "FileBurn - Console";
     Console.Write("Copyright (C) 2014 Jacopo De Luca\nThis program is free software.\n\nThis program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY!\nsee <http://www.gnu.org/licenses/>.\n\n");
     this.ProcessIdentifier();
     rndB = new RndByte(this.rndType ? RndByte.RndType.TRNG : RndByte.RndType.PRNG);
 }
Exemplo n.º 3
0
 public Shredder(string file, RndByte rndB)
 {
     this.file = file;
     this.cicle = 1;
     this.rndB = rndB;
 }
Exemplo n.º 4
0
 public void setNext(string file, int cicle, RndByte rndB)
 {
     this.file = file;
     this.cicle = cicle;
     this.rndB = rndB;
 }
Exemplo n.º 5
0
 public void setNext(string file, int cicle, RndByte rndB)
 {
     this.file  = file;
     this.cicle = cicle;
     this.rndB  = rndB;
 }
Exemplo n.º 6
0
 public Shredder(string file, RndByte rndB)
 {
     this.file  = file;
     this.cicle = 1;
     this.rndB  = rndB;
 }