quantum-resistant-rustykey 0.7.5 → 0.7.7

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 +8 -2
  2. package/package.json +14 -14
package/README.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  Fast, secure WebAssembly implementations of useful post-quantum-resistant tools both for backend (node) and frontend web.
4
4
 
5
+ [![npm version](https://shields.io)](https://npmjs.com)
6
+
7
+ ```bash
8
+ npm i quantum-resistant-rustykey
9
+ ```
10
+
5
11
  ## Implementation status: Pre-production (stable for testing)
6
12
 
7
13
  - ***Recommendation***: Await v1.0.0 (following security audit) for production/regulated deployment.
@@ -16,8 +22,8 @@ Fast, secure WebAssembly implementations of useful post-quantum-resistant tools
16
22
  ### NOTE: Why we support SQISign when it is 'NIST-on-ramp' only
17
23
  *TLDR; to help hurdle the "silent" barrier to post-quantum adoption: 1024-byte buffer limit in many existing FIDO2/WebAuthn implementations*
18
24
 
19
- #### WebAuthn PQC Signature "Wall"
20
- Falcon and Dilithium - but not SQISign - are "physical incompatibile" with millions of existing FIDO2/WebAuthn authenticators that rely on the CTAP2 1024-byte buffer limit.
25
+ #### WebAuthn PQC Signature size constraints
26
+ Dilithium variants, and Falcon-1024 are physical incompatibile with millions of existing FIDO2/WebAuthn authenticators that rely on the CTAP2 1024-byte buffer limit.
21
27
 
22
28
  - CTAP2 protocol, which allows browsers to talk to security keys, often operates within tight memory constraints to maintain the speed and low-power requirements of embedded devices.
23
29
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quantum-resistant-rustykey",
3
- "version": "0.7.5",
3
+ "version": "0.7.7",
4
4
  "description": "WebAssembly post-quantum-resistant tools for web",
5
5
  "author": "Antony R Mott <a@auditcanary.com> (https://rustykey.app)",
6
6
  "license": "ISC",
@@ -35,18 +35,6 @@
35
35
  "files": [
36
36
  "dist"
37
37
  ],
38
- "devDependencies": {
39
- "@biomejs/biome": "2.4.11",
40
- "@changesets/cli": "2.30.0",
41
- "@types/node": "25.6.0",
42
- "esbuild": "0.28.0",
43
- "tsdown": "0.21.8",
44
- "typescript": "6.0.2",
45
- "vitest": "4.1.4"
46
- },
47
- "dependencies": {
48
- "@noble/post-quantum": "0.6.1"
49
- },
50
38
  "scripts": {
51
39
  "clean": "rm -rf dist",
52
40
  "lint": "biome check . && tsc --project tsconfig.lint.json",
@@ -59,5 +47,17 @@
59
47
  "test": "pnpm build:vendor && vitest run",
60
48
  "release": "changeset publish",
61
49
  "example:browser": "pnpm --filter browser-demo dev"
50
+ },
51
+ "devDependencies": {
52
+ "@biomejs/biome": "2.4.11",
53
+ "@changesets/cli": "2.30.0",
54
+ "@types/node": "25.6.0",
55
+ "esbuild": "0.28.0",
56
+ "tsdown": "0.21.8",
57
+ "typescript": "6.0.2",
58
+ "vitest": "4.1.4"
59
+ },
60
+ "dependencies": {
61
+ "@noble/post-quantum": "0.6.1"
62
62
  }
63
- }
63
+ }