1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-22 16:18:08 +02:00

Fix wrong order of arguments when calling the CipherTransform ctor (bug 1782186)

This commit is contained in:
Calixte Denizet 2022-07-29 12:29:19 +02:00
parent 0c5afe9269
commit d092a85b6c
4 changed files with 10 additions and 2 deletions

View file

@ -1857,14 +1857,14 @@ const CipherTransformFactory = (function CipherTransformFactoryClosure() {
return new CipherTransform(
buildCipherConstructor(
this.cf,
this.stmf,
this.strf,
num,
gen,
this.encryptionKey
),
buildCipherConstructor(
this.cf,
this.strf,
this.stmf,
num,
gen,
this.encryptionKey