confium 0.7.1-x86_64-linux → 0.7.2-x86_64-linux
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 +36 -1
- data/Cargo.lock +218 -512
- data/lib/confium/version.rb +1 -1
- data/lib/confium_native/3.1/confium_native.so +0 -0
- data/lib/confium_native/3.2/confium_native.so +0 -0
- data/lib/confium_native/3.3/confium_native.so +0 -0
- data/lib/confium_native/3.4/confium_native.so +0 -0
- data/lib/confium_native/4.0/confium_native.so +0 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 40c0ef367982852d37d28a163aab2211c46efb8115bcc79e3fb20d3a98cc172b
|
|
4
|
+
data.tar.gz: 7209bad7ede07c20a373222ec853989efd0ef1f90f6da19201651408dc4f038f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c27d3ddd52f6107f6eb801de6e5f2ef553148b0a0a7d60e2531f4137777a4882490d31406266e60da9b99402a7d21daaa3d7469dcb5891e93af63262e645269a
|
|
7
|
+
data.tar.gz: b66692418cf41948956eed4dd71d9b08fd75f17ca2788c1ed2f4acb899c0716295b09afd69556ecd9ce5f8205ab6b8bc8d6cfe46083ec1f5ba9aec0309647ea5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,41 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.7.
|
|
3
|
+
## [0.7.2] — UNRELEASED (code on main; release on the owner's tag)
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- `Confium::TC::Cmp20::Mta` — the proved MtA sub-protocol (GG18/GG20
|
|
8
|
+
§3 + Appendix A) over confium-tc-cmp20 0.9: `full` runs the complete
|
|
9
|
+
Paillier exchange returning the additive shares (`alpha − beta =
|
|
10
|
+
k_i · x_j`); `party_i_init` / `party_j_respond` / `party_i_finish`
|
|
11
|
+
expose the three proved passes as Hashes of hex integers that can be
|
|
12
|
+
JSON-encoded onto a transport. `generate_keypair` /
|
|
13
|
+
`generate_commitment_key` produce the Paillier and Strong-RSA
|
|
14
|
+
commitment material (GVL released — safe-prime search takes seconds
|
|
15
|
+
at production sizes). Forged transcripts raise
|
|
16
|
+
`Confium::TC::Cmp20::MtaError`. Coordinator trust model documented
|
|
17
|
+
(the finish step decrypts under the responder's key, matching the
|
|
18
|
+
upstream crate); cross-machine split rounds await the upstream
|
|
19
|
+
per-party state machine.
|
|
20
|
+
- The api-reference's stale "MtA is an in-clear stub" caveat is
|
|
21
|
+
replaced with the real security model.
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- ext crates: `confium-tc-cmp20` 0.4 → 0.9, `confium-tc-gg18` 0.4 →
|
|
26
|
+
0.9, `confium-tc` 0.3.1 → 0.9, and the session line
|
|
27
|
+
(`confium-tc-core` via the `confium-tc-session` rename,
|
|
28
|
+
`confium-tc-frost-ed25519`) 0.4.7 → 0.9 — one confium-tc copy in
|
|
29
|
+
the link; two copies collided on their `cfm_tc_*` FFI symbols on
|
|
30
|
+
Linux/Windows. The in-process driver and Session APIs are unchanged
|
|
31
|
+
(suite green, 343 examples).
|
|
32
|
+
- Removed five unused direct deps from the 0.3 restructuring era
|
|
33
|
+
(`confium-tc-core`, `confium-crypto-vss`, `confium-crypto-zk`,
|
|
34
|
+
`confium-privacy`, `confium-observability`) — no code referenced
|
|
35
|
+
them, and `confium-crypto-vss` 0.3.0 predates the security gating
|
|
36
|
+
releases, so the shipped binaries no longer carry that code.
|
|
37
|
+
|
|
38
|
+
## [0.7.1] — 2026-09-08
|
|
4
39
|
|
|
5
40
|
### Added
|
|
6
41
|
|