quantum-resistant-rustykey 0.6.5 → 0.7.1
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.
- package/README.md +2 -2
- package/package.json +9 -4
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Fast, secure WebAssembly implementations of useful post-quantum-resistant tools
|
|
|
6
6
|
|
|
7
7
|
- ***Recommendation***: Await v1.0.0 (following security audit) for production/regulated deployment.
|
|
8
8
|
- includes NIST approved as well as riskier NIST 'on-ramp' variants eg SQISign
|
|
9
|
-
- *signature algorithms
|
|
9
|
+
- *signature algorithms:*
|
|
10
10
|
- *FN-DSA (Falcon-512, Falcon-1024)*
|
|
11
11
|
- *ML-DSA (Dilithium variants)*
|
|
12
12
|
- *SQISign*
|
|
@@ -251,4 +251,4 @@ This project was generously supported by:
|
|
|
251
251
|
- getting annoyed? First try being kind and courteous: someone may simply have had a bad day.
|
|
252
252
|
- people have differences of opinion, usually every design or implementation choice carries a trade-off and numerous costs. There is seldom a right answer.
|
|
253
253
|
- go light on unstructured critique, encourage others!
|
|
254
|
-
- if you feel you have been or are being harassed or made uncomfortable by a community member, contact BuzzyBee our friendly multi-LLM on the chat widget on our testbed site
|
|
254
|
+
- if you feel you have been or are being harassed or made uncomfortable by a community member, contact BuzzyBee® our friendly multi-LLM on the chat widget on our testbed site
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quantum-resistant-rustykey",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.1",
|
|
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",
|
|
@@ -41,18 +41,23 @@
|
|
|
41
41
|
"lint:fix": "biome check --write .",
|
|
42
42
|
"build:wasm": "node scripts/build-wasm.mjs",
|
|
43
43
|
"bundle:mlkem": "node scripts/bundle-mlkem.mjs",
|
|
44
|
-
"
|
|
45
|
-
"build": "
|
|
46
|
-
"
|
|
44
|
+
"bundle:signatures": "node scripts/bundle-signatures.mjs",
|
|
45
|
+
"build:vendor": "pnpm build:wasm && pnpm bundle:mlkem && pnpm bundle:signatures",
|
|
46
|
+
"build": "pnpm build:vendor && tsdown",
|
|
47
|
+
"test": "pnpm build:vendor && vitest run",
|
|
47
48
|
"release": "changeset publish",
|
|
48
49
|
"example:browser": "pnpm --filter browser-demo dev"
|
|
49
50
|
},
|
|
50
51
|
"devDependencies": {
|
|
51
52
|
"@biomejs/biome": "2.4.11",
|
|
52
53
|
"@changesets/cli": "2.30.0",
|
|
54
|
+
"@types/node": "25.6.0",
|
|
53
55
|
"esbuild": "0.28.0",
|
|
54
56
|
"tsdown": "0.21.8",
|
|
55
57
|
"typescript": "6.0.2",
|
|
56
58
|
"vitest": "4.1.4"
|
|
59
|
+
},
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"@noble/post-quantum": "0.6.1"
|
|
57
62
|
}
|
|
58
63
|
}
|