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); }
public Shredder(string file, RndByte rndB) { this.file = file; this.cicle = 1; this.rndB = rndB; }
public void setNext(string file, int cicle, RndByte rndB) { this.file = file; this.cicle = cicle; this.rndB = rndB; }