thrussh-keys 0.8.2

A crate to deal with SSH keys: load them, decrypt them, convert them to *ring*.
Documentation
[package]
name = "thrussh-keys"
version = "0.8.2"
authors = ["Pierre-Étienne Meunier <pe@pijul.org>"]
description = "A crate to deal with SSH keys: load them, decrypt them, convert them to *ring*."
keywords = ["ssh"]
repository = "https://nest.pijul.com/pijul_org/thrussh"
homepage = "https://pijul.org/thrussh"
documentation = "https://docs.rs/thrussh-keys"
license = "Apache-2.0"
include = [
        "Cargo.toml",
        "src/lib.rs",
        "src/pem.rs",
        "src/agent/mod.rs",
        "src/agent/msg.rs",
        "src/agent/server.rs",
        "src/agent/client.rs",
        "src/bcrypt_pbkdf.rs",
        "src/blowfish.rs",
        "src/format/mod.rs",
        "src/format/openssh.rs",
        "src/format/pkcs5.rs",
        "src/format/pkcs8.rs"
        ]

[dependencies]
thrussh = "0.17"
log = "0.3"
base64 = "0.8"
byteorder = "1.2"
tokio-core = "0.1"
tokio-io = "0.1"
futures = "0.1"
cryptovec = "0.4"
error-chain = "0.11"
hex = "0.3"
yasna = "0.1"
num-bigint = { version = "0.1", default-features = false }
num-integer = { version = "0.1", default-features = false }
openssl = "0.9.23"
bit-vec = "0.4"

[dev-dependencies]
env_logger = "0.3"
tempdir="0.3"
tokio-uds = "0.1"