confium 0.6.2 → 0.7.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +43 -0
- data/Cargo.lock +519 -80
- data/README.adoc +72 -4
- data/confium.gemspec +2 -0
- data/ext/confium_native/Cargo.toml +12 -4
- data/ext/confium_native/src/lib.rs +24 -0
- data/ext/confium_native/src/net.rs +125 -0
- data/ext/confium_native/src/tc_session.rs +268 -0
- data/ext/confium_native/src/winsock.rs +784 -0
- data/lib/confium/version.rb +1 -1
- metadata +5 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 604e0df1709827705bdca8fabd5ac2c5bdb70eb1e32b550e7ad7bfca143d7dcc
|
|
4
|
+
data.tar.gz: b1d4eea58189c4e1acf7613c27efc23ea7a76ea6afb9a32b911f27d56dc45a7c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e07456a3f0a1c4499290372d238fd15e173e578deabb01de7bea5c5b6c014495eab86b962c71f33fb3f21c9d2f9124dd982373c5e7df404c011955180d136b1f
|
|
7
|
+
data.tar.gz: 2ee41a6707200f709086c9ae63d73554f2aa8836abf06c732a1ac904fded30baece97813b50a8229c2a351ea3cf0430d2265d3f93b06aa49daa4f8447c67e037
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.7.0] — 2026-09-07
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- `Confium::Transport::SignerClient` / `CoordinatorServer` —
|
|
8
|
+
coordinator sessions over any registry transport the extension
|
|
9
|
+
links, addressed by URL: `tcp://host:port` for local/trusted
|
|
10
|
+
networks, `noise://host:port` for Noise_XX
|
|
11
|
+
(`Noise_XX_25519_ChaChaPoly_BLAKE2s`) encrypted sessions.
|
|
12
|
+
`noise://` URLs take `key=<hex>` (local static private key;
|
|
13
|
+
ephemeral and trust-on-first-use when omitted) and `pinned=<hex>`
|
|
14
|
+
(SHA-256 fingerprint of the expected peer static key — the
|
|
15
|
+
handshake aborts on mismatch). The handshake carries a 10-second
|
|
16
|
+
deadline so a non-Noise peer fails fast instead of hanging.
|
|
17
|
+
`SignerClient` exposes `#register`, `#create_session`,
|
|
18
|
+
`#submit_commitment`, `#submit_share` (returns the aggregated
|
|
19
|
+
signature once the threshold is met, else nil);
|
|
20
|
+
`CoordinatorServer.new(url)` serves any linked scheme for tests
|
|
21
|
+
and single-process deployments.
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- **BREAKING**: `Confium::Net` is `Confium::Transport`. Defining
|
|
26
|
+
`Confium::Net` shadowed Ruby stdlib `Net` for every constant
|
|
27
|
+
lookup under the `Confium` namespace — `Confium::Audit::OtlpSink`'s
|
|
28
|
+
`Net::HTTP` resolved to `Confium::Net::HTTP` and raised
|
|
29
|
+
`NameError`. No prior release shipped the `Net` names.
|
|
30
|
+
|
|
31
|
+
## [0.6.3] — 2026-08-26
|
|
32
|
+
|
|
33
|
+
### Added
|
|
34
|
+
|
|
35
|
+
- `Confium::TC::Session` — per-party threshold protocol sessions
|
|
36
|
+
over confium-tc-core 0.4: each signer process runs its own
|
|
37
|
+
session (`"FROST-ed25519-dkg"` for distributed key generation,
|
|
38
|
+
`"FROST-ed25519"` for signing with the DKG share and message) and
|
|
39
|
+
exchanges only `round_step` messages — the share never leaves the
|
|
40
|
+
process. `#round_step(incoming)` returns
|
|
41
|
+
`{ "outgoing" => [...], "complete" => bool }`; the completed DKG
|
|
42
|
+
session's `#result` is the party's share blob, the signing
|
|
43
|
+
session's `#result` an RFC 8032 Ed25519 signature verifiable under
|
|
44
|
+
the group public key.
|
|
45
|
+
|
|
3
46
|
## [0.6.2] — 2026-08-26
|
|
4
47
|
|
|
5
48
|
### Added
|