Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Sqlite3 WebAssembly (sqlite.org)
    —discuss
  2. Show HN: Tokken – a browser fighting game where AI models fight and HP is tokens (tokken.win)
    —discuss
  3. Toolpak – Flatpak for System Tools (gnome.org)
    —discuss
  4. AWS CloudWatch Omni AI (amazon.com)
    —discuss
  5. Six Bazel patches from an AI software factory, plus a remote-cache security bug (incredibuild.com)
    —discuss
  6. Amazon Is Recruiting Laid Off Workers in Boomerang Hire Trend (inc.com)
    —discuss
  7. Enhanced Spell Checking on the Web (bkardell.com)
    —discuss
  8. An Existential Guide To: Forgiving Your Parents (theshadowedarchive.substack.com)
    —discuss
  9. Rumps – Uncomplicated macOS Python Statusbar Apps (github.com/jaredks)
    —discuss
  10. Japan moves to tighten rules for foreigners, throwing futures into doubt (aljazeera.com)
    —discuss
  11. The state of SIMD in Rust in 2026 (shnatsel.github.io)
    —discuss
  12. Show HN: A local alternative to Jev – 94% on Banking77 (gist.github.com)
    —discuss
  13. 1986: How to Spot the Upper Class – That's Life – BBC Archive [video] (youtube.com)
    —discuss
  14. Modern LLMs have tiny GPTs hidden inside them (invertedpassion.substack.com)
    —discuss
  15. Von, an Open-Source Jev Alternative (github.com/wfzyx)
    —discuss
  16. Sealed Fedora Atomic Desktop bootable container images (fedoramagazine.org)
    —discuss
  17. Show HN: Museum of Numbers (numbermuseum.com)
    2comments
  18. Brave browser: [ads] Add "Sponsored ads enabled" toggle to settings on Desktop (github.com/brave)
    —discuss
  19. WLED – open-source ESP32 webserver to control NeoPixel LEDs (wled.ge)
    —discuss
  20. Reverse-engineering the Intel 8087's tangent algorithm: more than CORDIC (righto.com)
    1comments
  21. Wrong, Not Broken (amazon.com)
    —discuss
  22. Labelled 'pervert glasses': Will Meta's camera-free version change their image? (bbc.co.uk)
    —discuss
  23. Docker launches cloud sandboxes: Start on your laptop, finish in the cloud (docker.com)
    —discuss
  24. What is the best shape of a city? Modelling effect of urban form on distance (sagepub.com)
    —discuss
  25. The clans that run Spain's biggest companies (elpais.com)
    —discuss
  26. The Plunging Price of Thought (epoch.ai)
    —discuss
  27. Show HK: Find My Cat Name (findmycatname.com)
    —discuss
  28. Washington Heights Man Cleans One NYC Block a Day for 100 Days,Neighbors Join In (hoodline.com)
    —discuss
  29. I Put My LG TV Under Network Surveillance [video] (youtube.com)
    —discuss
  30. Show HN: Proof-native smart contracts without a transaction archive (colosseum.com)
    —discuss

Golang: Crypto/fips140: do not bloat crypto code unnecessarily

1 pointsby 3h agogithub.com
1 comments
2h agoHN ↗

Isn't there still need for non- or post- FIPS-140 -like cipher restrictions in non FIPS-140 environments?

How much code is needed to implement Classical+PQ (Hybrid PQ) or PQ-only (Only PQ) cipher selection restrictions just?

FWIU, with golang:

  # This allows X25519MLKEM768 (Hybrid PQ)
  GODEBUG=fips140=on

  # This prevents any PQ ciphers from being used:
  GODEBUG=fips140=only

tlsref needs to be revised to specify PQ cipher lists.