@ivan_a_souza/solid-id 0.0.11 → 0.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -99,7 +99,7 @@ Returns a `ParsedSolidId` object with internal details:
99
99
  | --------- | ---- | ------------------------------------------------------- |
100
100
  | Timestamp | 48 | Time in milliseconds since 1985-05-17 |
101
101
  | Entropy | 64 | Random bits generated with `crypto.getRandomValues` |
102
- | Checksum | 16 | Simple verification (XOR between timestamp and entropy) |
102
+ | Checksum | 16 | Integrity verification using the CRC-16-CCITT algorithm |
103
103
  | Total | 128 | Encoded in 22 Base62 characters |
104
104
 
105
105
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ivan_a_souza/solid-id",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "type": "module",
5
5
  "description": "**SOLID ID** (Sortable, Ordered, Legible, Indexed, Distributed) is a unique identifier generator in TypeScript that produces compact, lexicographically ordered, and secure IDs for distributed use.",
6
6
  "main": "dist/solid-id.cjs",