p224 0.13.2

Pure Rust implementation of the NIST P-224 (a.k.a. secp224r1) elliptic curve as defined in SP 800-186
Documentation
[dependencies.ecdsa-core]
default-features = false
features = ["der"]
optional = true
package = "ecdsa"
version = "0.16.6"

[dependencies.elliptic-curve]
default-features = false
features = ["hazmat", "sec1"]
version = "0.13.4"

[dependencies.hex-literal]
optional = true
version = "0.4"

[dependencies.primeorder]
optional = true
version = "0.13.1"

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

[dependencies.sha2]
default-features = false
optional = true
version = "0.10"
[dev-dependencies.blobby]
version = "0.3"

[dev-dependencies.ecdsa-core]
default-features = false
features = ["dev"]
package = "ecdsa"
version = "0.16"

[dev-dependencies.hex-literal]
version = "0.4"

[dev-dependencies.primeorder]
features = ["dev"]
version = "0.13"

[dev-dependencies.rand_core]
features = ["getrandom"]
version = "0.6"

[features]
alloc = ["elliptic-curve/alloc"]
arithmetic = ["dep:primeorder", "elliptic-curve/arithmetic"]
default = ["arithmetic", "ecdsa", "pem", "std"]
digest = ["ecdsa-core/digest", "ecdsa-core/hazmat"]
ecdh = ["arithmetic", "elliptic-curve/ecdh"]
ecdsa = ["arithmetic", "ecdsa-core/signing", "ecdsa-core/verifying", "sha224"]
pem = ["elliptic-curve/pem", "pkcs8"]
pkcs8 = ["ecdsa-core?/pkcs8", "elliptic-curve/pkcs8"]
serde = ["ecdsa-core?/serde", "elliptic-curve/serde", "primeorder?/serde", "serdect"]
sha224 = ["digest", "sha2"]
std = ["alloc", "elliptic-curve/std"]
test-vectors = ["dep:hex-literal"]

[package]
authors = ["RustCrypto Developers"]
categories = ["cryptography", "no-std"]
description = "Pure Rust implementation of the NIST P-224 (a.k.a. secp224r1) elliptic curve\nas defined in SP 800-186\n"
documentation = "https://docs.rs/p224"
edition = "2021"
keywords = ["crypto", "ecc", "nist", "secp224r1"]
license = "Apache-2.0 OR MIT"
name = "p224"
readme = "README.md"
repository = "https://github.com/RustCrypto/elliptic-curves/tree/master/p224"
rust-version = "1.65"
version = "0.13.2"
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]