whitespace

This commit is contained in:
Christopher Jeffrey 2016-06-10 23:48:11 -07:00
parent d4571b56bd
commit 84c1ec45c9
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -119,9 +119,9 @@ AESKey.prototype.getEncryptKey = function getEncryptKey() {
if (this.bits === 192) {
for (;;) {
tmp = key[kp + 5];
tmp = key[kp + 5];
key[kp + 6] = key[kp + 0]
key[kp + 6] = key[kp + 0]
^ (TE2[(tmp >>> 16) & 0xff] & 0xff000000)
^ (TE3[(tmp >>> 8) & 0xff] & 0x00ff0000)
^ (TE0[(tmp >>> 0) & 0xff] & 0x0000ff00)