[dependencies.base64ct]
optional = true
version = "1.8"
[dependencies.bigint]
default-features = false
features = ["alloc"]
optional = true
package = "crypto-bigint"
version = "0.7.0-rc.15"
[dependencies.bytes]
default-features = false
optional = true
version = "1"
[dependencies.digest]
default-features = false
optional = true
version = "0.11.0-rc.5"
[dependencies.pem-rfc7468]
optional = true
version = "1"
[dependencies.ssh-derive]
optional = true
version = "0.3.0-rc.0"
[dependencies.subtle]
default-features = false
optional = true
version = "2"
[dependencies.zeroize]
default-features = false
optional = true
version = "1"
[dev-dependencies.hex-literal]
version = "1"
[features]
alloc = ["base64ct?/alloc", "pem-rfc7468?/alloc", "zeroize?/alloc"]
base64 = ["dep:base64ct"]
bigint = ["alloc", "zeroize", "dep:bigint"]
bytes = ["alloc", "dep:bytes"]
derive = ["ssh-derive"]
pem = ["base64", "dep:pem-rfc7468"]
[lib]
name = "ssh_encoding"
path = "src/lib.rs"
[package]
authors = ["RustCrypto Developers"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["authentication", "cryptography", "encoding", "no-std", "parser-implementations"]
description = """
Pure Rust implementation of SSH data type decoders/encoders as described
in RFC4251
"""
edition = "2024"
homepage = "https://github.com/RustCrypto/SSH/tree/master/ssh-encoding"
keywords = ["crypto", "certificate", "key", "openssh", "ssh"]
license = "Apache-2.0 OR MIT"
name = "ssh-encoding"
readme = "README.md"
repository = "https://github.com/RustCrypto/SSH"
resolver = "2"
rust-version = "1.85"
version = "0.3.0-rc.4"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[[test]]
name = "decode"
path = "tests/decode.rs"
[[test]]
name = "derive"
path = "tests/derive.rs"
[[test]]
name = "encode"
path = "tests/encode.rs"