mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-24 04:57:00 +01:00
Implemnt SSH public key management This implements ssh public key distribution for kanidm, enforcing that valid ssh public keys are placed into the ssh_publickey attribute, adds management tools so that accounts can self-service manage their keys, and finally adds an authorized keys command helper suitable for sshd_config to utilise.
27 lines
530 B
TOML
27 lines
530 B
TOML
[package]
|
|
name = "kanidm_tools"
|
|
version = "0.1.0"
|
|
authors = ["William Brown <william@blackhats.net.au>"]
|
|
edition = "2018"
|
|
default-run = "kanidm"
|
|
|
|
[[bin]]
|
|
name = "kanidm"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "kanidm_ssh_authorizedkeys"
|
|
path = "src/ssh_authorizedkeys.rs"
|
|
|
|
[dependencies]
|
|
kanidm_client = { path = "../kanidm_client" }
|
|
kanidm_proto = { path = "../kanidm_proto" }
|
|
rpassword = "0.4"
|
|
structopt = { version = "0.2", default-features = false }
|
|
log = "0.4"
|
|
env_logger = "0.6"
|
|
toml = "0.5"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
|