Beispiel
bcryptjs 3.0.3: Handle the bcryptjs 3 major revision switch where genSalt and hash default silently to 2b revisions, clamp out-of-range rounds, and restrict package subpath exports
Verifiziertes Beispiel für npm bcryptjs 3.0.3: Handle the bcryptjs 3 major revision switch where genSalt and hash default silently to 2b revisions, clamp…
sha256:70583a22fda0b9a43aca2419197c61191453261a59934ff49df46aea0832ca04
Dieses Netzwerk bietet eine Sache: ein Sample, das baut. Es hat es in einer Sandbox ausgeführt und die signierte Quittung behalten. Es bewertet nichts und garantiert nichts — ob derselbe Code bei Ihnen baut, hat es nicht gemessen.
Wie viele verschiedene Signaturschlüssel eine bestandene Vertragsquittung eingereicht haben. Einer ist der Autor allein; mehr als einer heißt, jemand anderes hat es auch gebaut. Ein Schlüssel wird selbst erzeugt und hat keine registrierte Identität dahinter — gezählt werden Schlüssel, nicht Personen.
MIT-0
Ausführungsbelege
Die deklarierte Umgebung und die signierten Läufe stehen getrennt, damit Sie genau sehen, was dieses Sample ausgeführt hat und wo.
- Beleggrundlage
- Signierter Vertrag bestanden
- Verifizierungsbelege
- 2
- Signaturschlüssel, die es gebaut haben
- 2
Deklarierte Umgebung
node linux x64 node node npm
Umgebungen der Verifizierungsläufe
| Umgebung | Contract | Stufen | Lauf |
|---|---|---|---|
| node 22 · linux alpine/x64 · docker ed25519:d91480838ac982c9 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · node-typescript@1 |
2026-08-16 |
| node 22 · linux alpine/x64 · docker ed25519:2175b912ea1c23b1 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · node-typescript@1 |
2026-08-18 |
Fall
HOW- Ziel
- Handle the bcryptjs 3 major revision switch where genSalt and hash default silently to 2b revisions, clamp out-of-range rounds, and restrict package subpath exports
- Pakete
- Symbole
-
- bcrypt.genSaltSync
- bcrypt.hashSync
- bcrypt.compareSync
- bcrypt.truncates
- bcrypt.getRounds
- bcrypt.getSalt
- Umgebung
- node
- Erstellt
- 2026-08-16T06:23:36Z
Contract
- assert bcryptjs 3 defaults to generating "$2b$" salt and hash prefixes rather than the legacy "$2a$" prefix from bcryptjs 2, causing regex validators expecting "$2a$" to silently reject new hashes
- assert passing a minor revision argument to genSaltSync or hashSync is ignored because bcryptjs 3 hardcodes "$2b$" in genSaltSync, so generating "$2a$" requires providing an explicit custom "$2a$" salt string
- assert compareSync remains backward compatible with historical "$2a$" and "$2y$" hash strings by parsing the revision directly from the stored hash prefix
- assert genSaltSync silently clamps rounds below 4 up to 4 and rounds above 31 down to 31 while defaulting 0 to 10, whereas passing an explicit salt with rounds outside 4-31 to hashSync throws an Error
- assert bcryptjs 3 exports truncates() which reports truncation strictly at 72 UTF-8 bytes rather than string character length, causing multibyte strings beyond 72 bytes to collide under compareSync
- assert bcryptjs 3 declares an exports map restricting subpaths so require("bcryptjs/package.json") throws ERR_PACKAGE_PATH_NOT_EXPORTED
Dateien
- NOTES.md
- csx.json
- package-lock.json
- package.json
- src/index.mjs
- test/contract.mjs