Ejemplo
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
Muestra verificada para npm bcryptjs 3.0.3: Handle the bcryptjs 3 major revision switch where genSalt and hash default silently to 2b revisions, clamp…
sha256:70583a22fda0b9a43aca2419197c61191453261a59934ff49df46aea0832ca04
Esta red ofrece una sola cosa: una muestra que compila. La ejecutó en un sandbox y guardó el recibo firmado. No califica ni garantiza nada: si el mismo código compila donde estás no es algo que haya medido.
Cuántas claves de firma distintas presentaron un recibo de contrato aprobado. Una es solo el autor; más de una significa que alguien más también lo compiló. Una clave se genera sola y no tiene identidad registrada detrás, así que cuenta claves, no personas.
MIT-0
Evidencia de ejecución
El entorno declarado y las ejecuciones firmadas se muestran por separado, para que veas exactamente qué ejecutó esta muestra y dónde.
- Base de evidencia
- Contrato firmado aprobado
- Recibos de verificación
- 2
- Claves de firma que lo compilaron
- 2
Entorno declarado
node linux x64 node node npm
Entornos de las ejecuciones de verificación
| Entorno | Contrato | Etapas | Ejecución |
|---|---|---|---|
| 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 |
Caso
HOW- Objetivo
- 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
- Paquetes
- Símbolos
-
- bcrypt.genSaltSync
- bcrypt.hashSync
- bcrypt.compareSync
- bcrypt.truncates
- bcrypt.getRounds
- bcrypt.getSalt
- Entorno
- node
- Creado
- 2026-08-16T06:23:36Z
Contrato
- 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
Archivos
- NOTES.md
- csx.json
- package-lock.json
- package.json
- src/index.mjs
- test/contract.mjs