f6bd511599
* merging georgio/lp-psqv2-integration * use authenicator on the responder's side * nym-lp crate compiling * moved the e2e test to nym-lp * move key generation to peer * moved principal generation * update KKTResponder * encapsulation key parsing * Adding concrete types within KKT exchange * initiator side of the full handshake * responder side of the handshake and full e2e test * fixed unit-tests within nym-kkt * LpSession cleanup * helpers for Transport * revamp of the transport traits and initial work on client-side transport * compiling nym-crypto * 'working' client-entry dvpn reg * Fix key conversion * Slightly reduce use of rand08 * reverted back to libcrux repo refs * intial telescoping reg * removing dead code * wip * moved data encryption into the state machine * restoring nym-lp tests * update lp api model * Add receiver index derivation * Add receiver index derivation * use derived receiver index * feat: add kem key generation to nodes * generate fresh x25519, mlkem768 and mceliece keys on config migration * add lp peer config * nym-node startup cleanup * removed dependency on pre-rand09 from nym-lp * re-expose LP information on the http API * fixed tests compilation * add peer config happy path tests * formatting * add more tests and fix bug * better docs * clippy and formatting issues * return error on mceliece within NestedSession * wasm fixes * removed legacy nym-vpn-lib-wasm * fixing wasm for real this time * additional fixes * add payload to kkt * make clippy happy * moved LP to nym-node crate * cargo fmt * integrate lpconfig payload * fix response size trait impl * Migrate receiver index * Change receiver index to u32 and regorganize crates * clippy * hopefully final wasm fixes * simple conversion method from semver to ciphersuite * updated nym-node config template * chore: remove duplicated code --------- Co-authored-by: Georgio Nicolas <me@georgio.xyz>
46 lines
1.7 KiB
TOML
46 lines
1.7 KiB
TOML
[package]
|
|
name = "nym-lp-client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "LP+KCP mixnet client"
|
|
license.workspace = true
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "nym-lp-client"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
bytes = { workspace = true }
|
|
clap = { workspace = true, features = ["derive"] }
|
|
rand = { workspace = true }
|
|
rand09 = { workspace = true }
|
|
rand_chacha = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
time = { workspace = true }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
tokio-util = { workspace = true, features = ["codec"] }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
|
url = { workspace = true }
|
|
|
|
# Nym crates
|
|
nym-api-requests = { path = "../../nym-api/nym-api-requests" }
|
|
nym-crypto = { path = "../../common/crypto" }
|
|
nym-kkt-ciphersuite = { workspace = true }
|
|
nym-http-api-client = { path = "../../common/http-api-client" }
|
|
nym-kcp = { path = "../../common/nym-kcp" }
|
|
nym-lp = { path = "../../common/nym-lp" }
|
|
nym-sphinx = { path = "../../common/nymsphinx" }
|
|
nym-sphinx-framing = { path = "../../common/nymsphinx/framing", features = ["no-mix-acks"] }
|
|
nym-sphinx-anonymous-replies = { path = "../../common/nymsphinx/anonymous-replies" }
|
|
nym-sphinx-addressing = { path = "../../common/nymsphinx/addressing" }
|
|
nym-sphinx-params = { path = "../../common/nymsphinx/params" }
|
|
nym-sphinx-types = { path = "../../common/nymsphinx/types" }
|
|
nym-topology = { path = "../../common/topology" }
|
|
nym-validator-client = { path = "../../common/client-libs/validator-client" }
|
|
nym-registration-client = { path = "../../nym-registration-client" }
|
|
nym-ip-packet-requests = { path = "../../common/ip-packet-requests" }
|