fixing another line break on parens
Showing
1 changed file
with
2 additions
and
4 deletions
... | @@ -317,14 +317,12 @@ export const decrypt = function(encrypted, key, initVector) { | ... | @@ -317,14 +317,12 @@ export const decrypt = function(encrypted, key, initVector) { |
317 | encrypted3 = ntoh(encrypted32[wordIx + 3]); | 317 | encrypted3 = ntoh(encrypted32[wordIx + 3]); |
318 | 318 | ||
319 | // decrypt the block | 319 | // decrypt the block |
320 | decipher.decrypt( | 320 | decipher.decrypt(encrypted0, |
321 | encrypted0, | ||
322 | encrypted1, | 321 | encrypted1, |
323 | encrypted2, | 322 | encrypted2, |
324 | encrypted3, | 323 | encrypted3, |
325 | decrypted32, | 324 | decrypted32, |
326 | wordIx | 325 | wordIx); |
327 | ); | ||
328 | 326 | ||
329 | // XOR with the IV, and restore network byte-order to obtain the | 327 | // XOR with the IV, and restore network byte-order to obtain the |
330 | // plaintext | 328 | // plaintext | ... | ... |
-
Please register or sign in to post a comment