mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-25 09:38:06 +02:00
Crypt filter EFF key should have StmF value as default, not StrF
This fixes the problem.
This commit is contained in:
parent
e4e9a2adea
commit
3ebc85e55f
1 changed files with 2 additions and 2 deletions
|
@ -1967,7 +1967,7 @@ var CipherTransformFactory = (function CipherTransformFactoryClosure() {
|
|||
this.cf = dict.get('CF');
|
||||
this.stmf = dict.get('StmF') || identityName;
|
||||
this.strf = dict.get('StrF') || identityName;
|
||||
this.eff = dict.get('EFF') || this.strf;
|
||||
this.eff = dict.get('EFF') || this.stmf;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2040,4 +2040,4 @@ var CipherTransformFactory = (function CipherTransformFactoryClosure() {
|
|||
};
|
||||
|
||||
return CipherTransformFactory;
|
||||
})();
|
||||
})();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue