var crypt = new myaes();
crypt.setAttribute("threaded", false);
crypt.AESEncrypt(this.plain.getText(), [0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff], new LzDelegate(this, "gotEncrypted"));
var crypt = new myaes();
crypt.setAttribute("threaded", false);
crypt.AESDecrypt(v, [0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff], new LzDelegate(this, "gotDecrypted"));
this.enc.setText(v);
this.decrypt(v);
this.dec.setText(v);
this.enc.setText("Loading |");
var crypt = new myaes();
crypt.setAttribute("threaded", true);
crypt.AESEncrypt(this.toenc, [0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff], new LzDelegate(this, "gotEncrypted"));
this.loading();
this.enc.setText("Loading |");
var crypt = new myaes();
crypt.setAttribute("threaded", false);
crypt.AESEncrypt(this.toenc, [0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff], new LzDelegate(this, "gotEncrypted"));
this.enc.setText(v);
if (this.enc.getText() == "")
{
this.enc.setText("Loading |");
} else if (this.enc.getText() == "Loading |")
{
this.enc.setText("Loading /");
} else if (this.enc.getText() == "Loading /")
{
this.enc.setText("Loading -");
} else if (this.enc.getText() == "Loading -")
{
this.enc.setText("Loading \\");
} else if (this.enc.getText() == "Loading \\")
{
this.enc.setText("Loading |");
} else {
if (this.loadingdel)
{
this.loadingdel.unregisterAll();
}
return;
}
if (!this.loadingdel)
{
this.loadingdel = new LzDelegate(this, "loading");
}
LzIdle.callOnIdle(this.loadingdel);