confium 0.7.2-x86_64-linux → 0.8.0-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 40c0ef367982852d37d28a163aab2211c46efb8115bcc79e3fb20d3a98cc172b
4
- data.tar.gz: 7209bad7ede07c20a373222ec853989efd0ef1f90f6da19201651408dc4f038f
3
+ metadata.gz: 1080a545140fc8e0c57651dd085e62783c3a4c659d54d9071aa57db2939af181
4
+ data.tar.gz: a239d3b4188fdf4a76f9019372a98c20ccd1d347024066e2f2799d0c386ee72d
5
5
  SHA512:
6
- metadata.gz: c27d3ddd52f6107f6eb801de6e5f2ef553148b0a0a7d60e2531f4137777a4882490d31406266e60da9b99402a7d21daaa3d7469dcb5891e93af63262e645269a
7
- data.tar.gz: b66692418cf41948956eed4dd71d9b08fd75f17ca2788c1ed2f4acb899c0716295b09afd69556ecd9ce5f8205ab6b8bc8d6cfe46083ec1f5ba9aec0309647ea5
6
+ metadata.gz: ae562c013ba262e0b3af206c68165de5a4d0c2e5d19d6ce1992da622a2de41dd8847f686a71125dad0a3dd14010b23836548cdea01f9763d5655cccde08cbd54
7
+ data.tar.gz: ef247459bef6442f0b3843504ae383ac2a4006b69e4d563b5c1f81cee38ea7856f3a2d571b445c734df62ee7f8518b52f7dc55fe63e7fe8fa5cf3f41bc144c70
data/CHANGELOG.md CHANGED
@@ -1,6 +1,25 @@
1
1
  # Changelog
2
2
 
3
- ## [0.7.2] — UNRELEASED (code on main; release on the owner's tag)
3
+ ## [0.8.0] — UNRELEASED (code on main; release on the owner's tag)
4
+
5
+ ### Changed
6
+
7
+ - **BREAKING**: `Confium::TC::Cmp20::Mta` follows the upstream
8
+ key-direction inversion (confium-tc-cmp20 0.10): the proved MtA
9
+ exchange now runs under the INITIATOR's Paillier key end to end.
10
+ `party_j_respond` drops its private-key argument — the responder
11
+ needs only the initiator's public material (it can never open the
12
+ ciphertext it operates on) — and `party_i_init` / `party_i_finish` /
13
+ `full` take the initiator's key. The split rounds are therefore
14
+ sound across processes: `alpha` stays with the initiator, `beta`
15
+ with the responder, and neither share holder can recover the
16
+ peer's secret (whoever holds both recovers it exactly). The
17
+ api-reference trust note is replaced by the key-direction
18
+ explanation; new spec: the responder side needs no private
19
+ material.
20
+ - ext crates: `confium-tc` / `confium-tc-cmp20` 0.9 → 0.10.
21
+
22
+ ## [0.7.2] — 2026-09-10
4
23
 
5
24
  ### Added
6
25
 
data/Cargo.lock CHANGED
@@ -113,9 +113,9 @@ dependencies = [
113
113
 
114
114
  [[package]]
115
115
  name = "bitflags"
116
- version = "2.13.1"
116
+ version = "2.13.2"
117
117
  source = "registry+https://github.com/rust-lang/crates.io-index"
118
- checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
118
+ checksum = "3ded4057c258ba199e2d26386d3af3780957ecaee6c4ef4041c6b4b8b97c0b06"
119
119
 
120
120
  [[package]]
121
121
  name = "blake2"
@@ -368,9 +368,9 @@ dependencies = [
368
368
 
369
369
  [[package]]
370
370
  name = "confium-net-tcp"
371
- version = "0.8.3"
371
+ version = "0.8.5"
372
372
  source = "registry+https://github.com/rust-lang/crates.io-index"
373
- checksum = "1b80e3d692ed5328a72e754a0f73d81f6c8fde3714d05fc0be1953f657e05f76"
373
+ checksum = "6f9dc8ede26a41714ca0d787592395face7551886cc229a8b97f30c34b903b2e"
374
374
  dependencies = [
375
375
  "confium-net",
376
376
  "inventory",
@@ -406,9 +406,9 @@ dependencies = [
406
406
 
407
407
  [[package]]
408
408
  name = "confium-tc"
409
- version = "0.9.2"
409
+ version = "0.10.0"
410
410
  source = "registry+https://github.com/rust-lang/crates.io-index"
411
- checksum = "5117ef63b3e928dbd7250607bef640961e70090ecc82a54ebd1b69e1921b4f9a"
411
+ checksum = "da7534230988cb45831c6125baa93b122e71b3d9d61b414927068dfe62842bc3"
412
412
  dependencies = [
413
413
  "chrono",
414
414
  "confium-tc-core",
@@ -428,9 +428,9 @@ dependencies = [
428
428
 
429
429
  [[package]]
430
430
  name = "confium-tc-cmp20"
431
- version = "0.9.2"
431
+ version = "0.10.0"
432
432
  source = "registry+https://github.com/rust-lang/crates.io-index"
433
- checksum = "c3d49e806886b274f44efb0d172600226b6696d8ac7f12124ce8e38093807bf7"
433
+ checksum = "a87ceca32c969982e86304f6c820b1db60d88d668025d86b13f95c4a013e6b7b"
434
434
  dependencies = [
435
435
  "confium-tc",
436
436
  "crypto-bigint 0.7.5",
@@ -447,9 +447,9 @@ dependencies = [
447
447
 
448
448
  [[package]]
449
449
  name = "confium-tc-core"
450
- version = "0.9.2"
450
+ version = "0.10.0"
451
451
  source = "registry+https://github.com/rust-lang/crates.io-index"
452
- checksum = "9c0af0c5074978ac0630447e2555abe4462732450e346b289dcc170a8a42a99b"
452
+ checksum = "86a3b3bda8a1453b8b5d02d13e88636dbcf8caa36671327a0ebce6514b97363f"
453
453
  dependencies = [
454
454
  "chrono",
455
455
  "getrandom 0.4.3",
@@ -482,9 +482,9 @@ dependencies = [
482
482
 
483
483
  [[package]]
484
484
  name = "confium-tc-frost-ed25519"
485
- version = "0.9.2"
485
+ version = "0.10.0"
486
486
  source = "registry+https://github.com/rust-lang/crates.io-index"
487
- checksum = "d5c04b1a94c923f0d157963feb5fa0df17808c753f0505e4ca21195b33857772"
487
+ checksum = "105b6f9d91b532fa118a18c6e2904684d46944db93cb79d2c3be8b13e0b2a680"
488
488
  dependencies = [
489
489
  "confium-tc",
490
490
  "curve25519-dalek 5.0.0",
@@ -509,9 +509,9 @@ dependencies = [
509
509
 
510
510
  [[package]]
511
511
  name = "confium-tc-gg18"
512
- version = "0.9.2"
512
+ version = "0.10.0"
513
513
  source = "registry+https://github.com/rust-lang/crates.io-index"
514
- checksum = "8de0dcac83c500c5bb9f6c3b7203c6c6afa340f46df4b781f3841683b4fdf3b7"
514
+ checksum = "9c7a07f0bac8cffd60dfedd3f786f75c25aad0c9315ac1f6cdfb60ecdcb025e6"
515
515
  dependencies = [
516
516
  "confium-tc",
517
517
  "crypto-bigint 0.7.5",
@@ -1185,9 +1185,9 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1185
1185
 
1186
1186
  [[package]]
1187
1187
  name = "hybrid-array"
1188
- version = "0.4.14"
1188
+ version = "0.4.15"
1189
1189
  source = "registry+https://github.com/rust-lang/crates.io-index"
1190
- checksum = "707114b52a152fa7bdb290cd7cd5912d9467273b6d74e21b8d81aca1f8533f6b"
1190
+ checksum = "27f864f10dfb56725ce5ce5472bc52252c8f93a4ab86327122cebf62c5f59a17"
1191
1191
  dependencies = [
1192
1192
  "subtle",
1193
1193
  "typenum",
@@ -1853,9 +1853,9 @@ dependencies = [
1853
1853
 
1854
1854
  [[package]]
1855
1855
  name = "rnp-rs"
1856
- version = "0.1.16"
1856
+ version = "0.1.17"
1857
1857
  source = "registry+https://github.com/rust-lang/crates.io-index"
1858
- checksum = "44ed4ce48fca01b9d8846dd681d555c8df626b43b83b916146108b7d2eca8ae2"
1858
+ checksum = "f3df383e603a1e920409e1c7fae0a80b829a7b51151ba7854cfb58415f8c9e04"
1859
1859
  dependencies = [
1860
1860
  "rnp-sys",
1861
1861
  "snafu 0.9.2",
@@ -1863,9 +1863,9 @@ dependencies = [
1863
1863
 
1864
1864
  [[package]]
1865
1865
  name = "rnp-src"
1866
- version = "0.2.5"
1866
+ version = "0.3.0"
1867
1867
  source = "registry+https://github.com/rust-lang/crates.io-index"
1868
- checksum = "72836ffd359235b998ae4062ddf1108e28fb10e18a2f69a000320eaab5fa2a25"
1868
+ checksum = "c4e6f4474772f8f4bfed1d6ba1a465bc524442206fe012257bfdcf8f6e0ab935"
1869
1869
  dependencies = [
1870
1870
  "botan-src",
1871
1871
  "flate2",
@@ -1875,9 +1875,9 @@ dependencies = [
1875
1875
 
1876
1876
  [[package]]
1877
1877
  name = "rnp-sys"
1878
- version = "0.1.1"
1878
+ version = "0.1.2"
1879
1879
  source = "registry+https://github.com/rust-lang/crates.io-index"
1880
- checksum = "42c118890f1f70738d30bce4c29edd29156a2c999e53eb4939700ac114a38878"
1880
+ checksum = "9ec6224a4e26bf2f71bca848f485aeefbd6bdb1721b6c83e5cb70980563ec982"
1881
1881
  dependencies = [
1882
1882
  "bindgen",
1883
1883
  "pkg-config",
@@ -2141,9 +2141,9 @@ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2141
2141
 
2142
2142
  [[package]]
2143
2143
  name = "smallvec"
2144
- version = "1.16.0"
2144
+ version = "1.16.1"
2145
2145
  source = "registry+https://github.com/rust-lang/crates.io-index"
2146
- checksum = "b9be42f50aa861c555654aa3a37f52f4b1074bacf4e48fe0ef7fa584e80f1f0f"
2146
+ checksum = "ba467056f1b547ed52077911161fc86985becbc60e8e1857c8a144dab0def891"
2147
2147
 
2148
2148
  [[package]]
2149
2149
  name = "snafu"
@@ -2814,18 +2814,18 @@ dependencies = [
2814
2814
 
2815
2815
  [[package]]
2816
2816
  name = "zerocopy"
2817
- version = "0.8.56"
2817
+ version = "0.8.57"
2818
2818
  source = "registry+https://github.com/rust-lang/crates.io-index"
2819
- checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
2819
+ checksum = "d35102a9f36d089ccae9e4c6802bc118be4487b80aaffc0ab4e0cf5ce92d2873"
2820
2820
  dependencies = [
2821
2821
  "zerocopy-derive",
2822
2822
  ]
2823
2823
 
2824
2824
  [[package]]
2825
2825
  name = "zerocopy-derive"
2826
- version = "0.8.56"
2826
+ version = "0.8.57"
2827
2827
  source = "registry+https://github.com/rust-lang/crates.io-index"
2828
- checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
2828
+ checksum = "146c01f5ab44258da43cf276c74a2763db2ff3969c9c652c3f2de07041d0b2bc"
2829
2829
  dependencies = [
2830
2830
  "proc-macro2",
2831
2831
  "quote",
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Confium
4
- VERSION = '0.7.2'
4
+ VERSION = '0.8.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: confium
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.2
4
+ version: 0.8.0
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Ribose Open
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-09-08 00:00:00.000000000 Z
11
+ date: 2026-09-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake