| Summary: | [JSC] LLIntCallee should have two replacements | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Daniel Biró <danipro93> | ||||||||
| Component: | WebAssembly | Assignee: | Yusuke Suzuki <ysuzuki> | ||||||||
| Status: | RESOLVED FIXED | ||||||||||
| Severity: | Major | CC: | bfulgham, ews-watchlist, keith_miller, mark.lam, msaboff, product-security, saam, tzagallo, webkit-bug-importer, ysuzuki | ||||||||
| Priority: | P2 | Keywords: | InRadar | ||||||||
| Version: | Safari 14 | ||||||||||
| Hardware: | All | ||||||||||
| OS: | All | ||||||||||
| Attachments: |
|
||||||||||
|
Description
Daniel Biró
2021-07-28 08:22:38 PDT
I managed to reproduce it in GNOME Web 40.1 - WebKitGTK 2.32.1 <script src="https://cdn.jsdelivr.net/npm/hash-wasm@4.9.0/dist/argon2.umd.min.js"></script> <script> const run = async (i) => { console.log(await hashwasm.argon2id({ password: 'abc' + i, salt: '12345678', parallelism: 1, memorySize: 128, iterations: 4, hashLength: 16, outputType: 'encoded' })); }; for (let i = 0; i < 30; i++) { run(i); } </script> Created attachment 443035 [details]
Patch
Created attachment 443036 [details]
Patch
Comment on attachment 443036 [details]
Patch
r=me
Committed r285149 (243786@main): <https://commits.webkit.org/243786@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 443036 [details]. |