remove aes args from global scope

This commit is contained in:
Tankred Hase 2014-02-25 00:05:43 +01:00
parent d0c319dd49
commit 6b81995dd5

View File

@ -442,9 +442,11 @@ function keyExpansion(key) {
}
}
}
this.rounds = rounds;
this.rk = keySched;
return this;
return {
rounds: rounds,
rk: keySched
};
}
function AESencrypt(block, ctx) {