Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Holtec Postponed Its IPO. Then a Problem at Its Nuclear Plant Became Public(americanbuildout.com)
    discuss
  2. Anonymous Git Pull Requests(jens.dev)
    discuss
  3. AutoRedline – Automatically generate engineering redlines from PDFs(autoredline.ai)
    1comments
  4. WinRAR Archive Messenger Bag(tern.et)
    discuss
  5. Show HN: Build a CPU from gates, in TypeScript, in the browser(simten.dev)
    discuss
  6. Agent Substrate Available on GKE(cloud.google.com)
    discuss
  7. Riso-windowseat – Procedural risograph films and prints(github.com/sevenevesai)
    discuss
  8. Netflix's 'Wonka's the Golden Ticket' Is a Ghoulish Misuse of AI Gene Wilder(variety.com)
    discuss
  9. No Free Lunch at the Slop Trough(admsmth.com)
    discuss
  10. YouTube's Custom Feeds Give You More Control over the Algorithm(wired.com)
    discuss
  11. Show HN: Geo Pulse – Using Jev to classify geopolitical news in real time(sysx.workers.dev)
    discuss
  12. OpenAI's Next Marketing Stunt [video](youtube.com)
    discuss
  13. Slop.place – software written by machines, served with a label(slop.place)
    discuss
  14. Ask HN: Why is there so much hype around Jev ?
    discuss
  15. Laya MPs Source(github.com/afshinm)
    discuss
  16. AI-Agents
    discuss
  17. Bluetooth Range: How Far Does It Reach?(bgr.com)
    discuss
  18. Show HN: AirShark – Terminal Wi-Fi monitor for macOS (no sudo, channel hopping)(github.com/chiroyce1)
    1comments
  19. Reflections on 1,000 Days of Math(gmays.com)
    discuss
  20. The Earth is missing 3T tons of mass(signoregalilei.com)
    discuss
  21. Jev Can't Be Calibrated(alexmolas.com)
    discuss
  22. Reverse-engineering vibe-coded repos with an MCP agent(medium.com/igrglvk)
    discuss
  23. Claude Code – Fixing the world with one prompt(reddit.com)
    discuss
  24. Accident: JSX E145 Houston 2024, gear collapse and runway excursion on landing
    discuss
  25. Meta's New AI Agent Is an Instant Hit–and the Backlash Has Begun(wsj.com)
    discuss
  26. Parsing JSON Objects without intermediate ASTs(arthi-chaud.github.io)
    discuss
  27. Show HN: Fractalysis – Online interactive infinite-zoom Mandelbrot viewer(erwindegroot.nl)
    discuss
  28. Do not let your type system reason about aliasing in your programming language(futhark-lang.org)
    discuss
  29. The Zig Journey(kristoff.it)
    discuss
  30. Trump's 1,156 July Stock Trades Involved AI, Big Oil, Weapons-Makers, and More(commondreams.org)
    1comments

PBKDF2 has a 100k-iteration ceiling in Cloudflare Workers

1 pointsby 1h agowhoszoo.app
2 comments
1h agoHN ↗

Sorry, this is a bug.

It dates back to when Workers only supported 50ms CPU time limits. Back then 100k iterations was enough to exceed the 50ms budget.

Now that the limit is 5 minutes this is pretty silly, but since PBKDF2 is considered obsolete and not often used in new code, I guess fixing it never really came up.

I would accept a PR to increase the constant to 1M, or higher with a good argument (but most recommendations I see for iteration count are <1M). Constant defined here:

https://github.com/cloudflare/workerd/blob/main/src/workerd/...

54m agoHN ↗

Also FWIW I've had success with argon2 in workers via wasm.