sec1 0.7.3

Pure Rust implementation of SEC1: Elliptic Curve Cryptography encoding formats including ASN.1 DER-serialized private keys as well as the Elliptic-Curve-Point-to-Octet-String encoding
Documentation
[dependencies.base16ct]
default-features = false
optional = true
version = "0.2"

[dependencies.der]
features = ["oid"]
optional = true
version = "0.7"

[dependencies.generic-array]
default-features = false
optional = true
version = "0.14.7"

[dependencies.pkcs8]
default-features = false
optional = true
version = "0.10"

[dependencies.serdect]
default-features = false
features = ["alloc"]
optional = true
version = "0.2"

[dependencies.subtle]
default-features = false
optional = true
version = "2"

[dependencies.zeroize]
default-features = false
optional = true
version = "1"
[dev-dependencies.hex-literal]
version = "0.4"

[dev-dependencies.tempfile]
version = "3"

[features]
alloc = ["der?/alloc", "pkcs8?/alloc", "zeroize?/alloc"]
default = ["der", "point"]
der = ["dep:der", "zeroize"]
pem = ["alloc", "der/pem", "pkcs8/pem"]
point = ["dep:base16ct", "dep:generic-array"]
serde = ["dep:serdect"]
std = ["alloc", "der?/std"]
zeroize = ["dep:zeroize", "der?/zeroize"]

[package]
authors = ["RustCrypto Developers"]
categories = ["cryptography", "data-structures", "encoding", "no-std", "parser-implementations"]
description = "Pure Rust implementation of SEC1: Elliptic Curve Cryptography encoding formats\nincluding ASN.1 DER-serialized private keys as well as the\nElliptic-Curve-Point-to-Octet-String encoding\n"
edition = "2021"
keywords = ["crypto", "key", "elliptic-curve", "secg"]
license = "Apache-2.0 OR MIT"
name = "sec1"
readme = "README.md"
repository = "https://github.com/RustCrypto/formats/tree/master/sec1"
rust-version = "1.65"
version = "0.7.3"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]