2a8faddc by jrivera

Remove unused parameter to decryptChunk_ function

1 parent 0384848b
...@@ -325,8 +325,7 @@ Decrypter = function(encrypted, key, initVector, done) { ...@@ -325,8 +325,7 @@ Decrypter = function(encrypted, key, initVector, done) {
325 this.asyncStream_.push(this.decryptChunk_(encrypted32.subarray(i, i + step), 325 this.asyncStream_.push(this.decryptChunk_(encrypted32.subarray(i, i + step),
326 key, 326 key,
327 initVector, 327 initVector,
328 decrypted, 328 decrypted));
329 i));
330 for (i = step; i < encrypted32.length; i += step) { 329 for (i = step; i < encrypted32.length; i += step) {
331 initVector = new Uint32Array([ 330 initVector = new Uint32Array([
332 ntoh(encrypted32[i - 4]), 331 ntoh(encrypted32[i - 4]),
......