[package]
edition = "2021"
rust-version = "1.89"
name = "oxicrypto-kex"
version = "0.1.0"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust key exchange implementations for OxiCrypto (X25519)"
readme = false
keywords = [
"cryptography",
"x25519",
"ecdh",
"key-exchange",
"pure-rust",
]
categories = ["cryptography"]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxicrypto"
[features]
default = []
std = [
"oxicrypto-core/std",
"oxicrypto-kdf/std",
"oxicrypto-aead/std",
]
[lib]
name = "oxicrypto_kex"
path = "src/lib.rs"
[[test]]
name = "kat_ecdh_nist"
path = "tests/kat_ecdh_nist.rs"
[[test]]
name = "kat_rfc7748"
path = "tests/kat_rfc7748.rs"
[[test]]
name = "kat_x25519_wycheproof"
path = "tests/kat_x25519_wycheproof.rs"
[dependencies.oxicrypto-aead]
version = "0.1.0"
[dependencies.oxicrypto-core]
version = "0.1.0"
[dependencies.oxicrypto-kdf]
version = "0.1.0"
[dependencies.p256]
version = "0.14.0-rc.9"
features = [
"ecdsa",
"alloc",
"ecdh",
]
default-features = false
[dependencies.p384]
version = "0.14.0-rc.9"
features = [
"ecdsa",
"alloc",
"ecdh",
]
default-features = false
[dependencies.p521]
version = "0.14.0-rc.9"
features = [
"ecdsa",
"alloc",
"ecdh",
]
default-features = false
[dependencies.rand_core]
version = "0.10.1"
default-features = false
[dependencies.x25519-dalek]
version = "2.0.1"
features = ["static_secrets"]
default-features = false
[dependencies.x448]
version = "0.14.0-pre.9"
default-features = false
[dev-dependencies.hex]
version = "0.4.3"
features = ["alloc"]
default-features = false
[dev-dependencies.rand_chacha]
version = "0.10.0"
default-features = false