0a6f78a921
Initial implementation of the Lewes Protocol (LP) for gateway registration: - Add nym-lp crate with Noise protocol handshake - Add LP listener to gateway for handling registrations - Add LP client for registration flow - Integrate KKT for post-quantum KEM key exchange - Integrate PSQ for post-quantum PSK derivation - Add Ed25519 authentication throughout - Add docker/localnet support for testing Co-authored-by: Jędrzej Stuczyński <jedrzej.stuczynski@gmail.com>
28 lines
734 B
TOML
28 lines
734 B
TOML
[package]
|
|
name = "nym-registration-common"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
serde = { workspace = true, features = ["derive"] }
|
|
tokio-util.workspace = true
|
|
|
|
nym-authenticator-requests = { path = "../authenticator-requests" }
|
|
nym-credentials-interface = { path = "../credentials-interface" }
|
|
nym-crypto = { path = "../crypto" }
|
|
nym-ip-packet-requests = { path = "../ip-packet-requests" }
|
|
nym-sphinx = { path = "../nymsphinx" }
|
|
nym-wireguard-types = { path = "../wireguard-types" }
|
|
|
|
[dev-dependencies]
|
|
bincode.workspace = true
|
|
time.workspace = true
|