[[bench]]
name = "crypto_bench"
path = "benches/crypto_bench.rs"
[[bin]]
name = "qscp"
path = "src/bin/qscp.rs"
[[bin]]
name = "qssh"
path = "src/bin/qssh.rs"
[[bin]]
name = "qssh-add"
path = "src/bin/qssh-add.rs"
[[bin]]
name = "qssh-agent"
path = "src/bin/qssh-agent.rs"
[[bin]]
name = "qssh-keygen"
path = "src/bin/qssh-keygen.rs"
[[bin]]
name = "qssh-passwd"
path = "src/bin/qssh-passwd.rs"
[[bin]]
name = "qsshd"
path = "src/bin/qsshd.rs"
[[bin]]
name = "test_pqcrypto"
path = "src/bin/test_pqcrypto.rs"
[dependencies.aes-gcm]
version = "0.10"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.atty]
version = "0.2"
[dependencies.base64]
version = "0.22"
[dependencies.bincode]
version = "1.3"
[dependencies.byteorder]
version = "1.5"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.clap]
features = ["derive"]
version = "4.5"
[dependencies.env_logger]
version = "0.11"
[dependencies.flate2]
version = "1.0"
[dependencies.hex]
version = "0.4"
[dependencies.hkdf]
version = "0.12"
[dependencies.hostname]
version = "0.4"
[dependencies.if-addrs]
version = "0.12"
[dependencies.libc]
version = "0.2"
[dependencies.libp2p]
optional = true
version = "0.54"
[dependencies.log]
version = "0.4"
[dependencies.lz4]
version = "1.24"
[dependencies.pqcrypto]
version = "0.17"
[dependencies.pqcrypto-dilithium]
version = "0.5"
[dependencies.pqcrypto-falcon]
version = "0.2"
[dependencies.pqcrypto-kyber]
version = "0.4"
[dependencies.pqcrypto-sphincsplus]
version = "0.5"
[dependencies.pqcrypto-traits]
version = "0.3"
[dependencies.rand]
version = "0.8"
[dependencies.rand_chacha]
version = "0.3"
[dependencies.reqwest]
features = ["json", "native-tls"]
version = "0.12"
[dependencies.rpassword]
version = "7.3"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.sha3]
version = "0.10"
[dependencies.termios]
version = "0.3"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
features = ["full"]
version = "1.40"
[dependencies.whoami]
version = "1.5"
[dependencies.winterfell]
optional = true
version = "0.12.0"
[dependencies.zeroize]
features = ["zeroize_derive"]
version = "1.6"
[dependencies.zstd]
version = "0.13"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.tempfile]
version = "3.8"
[dev-dependencies.tokio-test]
version = "0.4"
[[example]]
name = "debug_handshake"
path = "examples/debug_handshake.rs"
[[example]]
name = "p2p_demo"
path = "examples/p2p_demo.rs"
[[example]]
name = "quantum_harmony_validator"
path = "examples/quantum_harmony_validator.rs"
[[example]]
name = "quantum_secure_session"
path = "examples/quantum_secure_session.rs"
[[example]]
name = "test_handshake"
path = "examples/test_handshake.rs"
[[example]]
name = "test_key_sizes"
path = "examples/test_key_sizes.rs"
[[example]]
name = "test_message_serialize"
path = "examples/test_message_serialize.rs"
[[example]]
name = "test_no_crypto"
path = "examples/test_no_crypto.rs"
[[example]]
name = "test_pq_crypto"
path = "examples/test_pq_crypto.rs"
[[example]]
name = "test_tcp_only"
path = "examples/test_tcp_only.rs"
[features]
default = ["sftp"]
gssapi = []
libp2p-transport = ["libp2p"]
multiplex = []
qkd = ["winterfell"]
sftp = []
[lib]
name = "qssh"
path = "src/lib.rs"
[package]
authors = ["QuantumVerse Protocols"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Experimental quantum-safe SSH using post-quantum crypto. Research project - NOT for production. See LIMITATIONS.md"
edition = "2021"
license = "MIT OR Apache-2.0"
name = "qssh"
readme = "README.md"
repository = "https://github.com/QuantumVerseProtocols/qssh"
version = "0.0.2-alpha"
[[test]]
name = "crypto_tests"
path = "tests/crypto_tests.rs"
[[test]]
name = "falcon_signatures"
path = "tests/falcon_signatures.rs"
[[test]]
name = "handshake_tests"
path = "tests/handshake_tests.rs"
[[test]]
name = "integration_full"
path = "tests/integration_full.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "key_parsing_tests"
path = "tests/key_parsing_tests.rs"
[[test]]
name = "minimal_test"
path = "tests/minimal_test.rs"
[[test]]
name = "p2p_tests"
path = "tests/p2p_tests.rs"
[[test]]
name = "qkd_tests"
path = "tests/qkd_tests.rs"
[[test]]
name = "quantum_tests"
path = "tests/quantum_tests.rs"
[[test]]
name = "real_integration_test"
path = "tests/real_integration_test.rs"
[[test]]
name = "shell_tests"
path = "tests/shell_tests.rs"
[[test]]
name = "simple_falcon"
path = "tests/simple_falcon.rs"
[[test]]
name = "stable_tests"
path = "tests/stable_tests.rs"
[[test]]
name = "test_without_crypto"
path = "tests/test_without_crypto.rs"
[[test]]
name = "unit_tests"
path = "tests/unit_tests.rs"
[[test]]
name = "vault_tests"
path = "tests/vault_tests.rs"