Feature 1 — Post-Quantum Hybrid KEM (X25519 + ML-KEM-768): - Create hybrid_kem.rs with keygen, encrypt, decrypt + 11 unit tests - Wire format: version(1) | x25519_eph_pk(32) | mlkem_ct(1088) | nonce(12) | ct - Add uploadHybridKey/fetchHybridKey RPCs to node.capnp schema - Server: hybrid key storage in FileBackedStore + RPC handlers - Client: hybrid keypair in StoredState, auto-wrap/unwrap in send/recv/invite/join - demo-group runs full hybrid PQ envelope round-trip Feature 2 — SQLCipher Persistence: - Extract Store trait from FileBackedStore API - Create SqlStore (rusqlite + bundled-sqlcipher) with encrypted-at-rest SQLite - Schema: key_packages, deliveries, hybrid_keys tables with indexes - Server CLI: --store-backend=sql, --db-path, --db-key flags - 5 unit tests for SqlStore (FIFO, round-trip, upsert, channel isolation) Also includes: client lib.rs refactor, auth config, TOML config file support, mdBook documentation, and various cleanups by user. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
42 lines
1.2 KiB
TOML
42 lines
1.2 KiB
TOML
[package]
|
|
name = "quicnprotochat-core"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Crypto primitives, MLS state machine, and hybrid post-quantum KEM for quicnprotochat."
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
# Crypto — classical
|
|
x25519-dalek = { workspace = true }
|
|
ed25519-dalek = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
hkdf = { workspace = true }
|
|
chacha20poly1305 = { workspace = true }
|
|
zeroize = { workspace = true }
|
|
rand = { workspace = true }
|
|
|
|
# Crypto — post-quantum hybrid KEM (M7)
|
|
ml-kem = { workspace = true }
|
|
|
|
# Crypto — MLS (M2)
|
|
openmls = { workspace = true }
|
|
openmls_rust_crypto = { workspace = true }
|
|
openmls_traits = { workspace = true }
|
|
tls_codec = { workspace = true }
|
|
serde = { workspace = true }
|
|
bincode = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
# Serialisation
|
|
capnp = { workspace = true }
|
|
quicnprotochat-proto = { path = "../quicnprotochat-proto" }
|
|
|
|
# Async runtime
|
|
tokio = { workspace = true }
|
|
|
|
# Error handling
|
|
thiserror = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true }
|