fractal-pqc 0.3.1 → 0.3.2
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 +6 -0
- package/package.json +1 -1
- package/src/index.mjs +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# fractal-pqc
|
|
2
2
|
|
|
3
|
+
> ⚠️ **Reference toolkit — NOT for production custody of real funds (yet).** It is
|
|
4
|
+
> **unaudited**, **key-path-only**, proven on **signet (not mainnet)**, and its quantum
|
|
5
|
+
> guarantee depends on a first-seen anchor registry that is still on the roadmap. Use it
|
|
6
|
+
> for **evaluation, testnet, education, and building on** — do **not** secure real Bitcoin
|
|
7
|
+
> with it until it is audited and 1.0. We say precisely what it is.
|
|
8
|
+
|
|
3
9
|
A small, **runnable, test-vector-verified** reference for quantum-safe migration of a
|
|
4
10
|
Bitcoin-style key. It binds a classical **secp256k1 / Taproot** key to a post-quantum
|
|
5
11
|
**ML-DSA-65 (NIST FIPS-204)** key and requires a post-quantum signature to authorize —
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fractal-pqc",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Runnable reference for quantum-safe migration of a Bitcoin-style key: bind secp256k1/Taproot to ML-DSA-65 (FIPS-204), derive P2TR addresses, build+sign BIP-341 key-path spends (official-vector-verified), and broadcast on testnet. Real primitives, honest scope.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
package/src/index.mjs
CHANGED