p256 0.13.2

Pure Rust implementation of the NIST P-256 (a.k.a. secp256r1, prime256v1) elliptic curve as defined in SP 800-186, with support for ECDH, ECDSA signing/verification, and general purpose curve arithmetic
Documentation
[[bench]]
harness = false
name = "field"
required-features = ["expose-field"]

[[bench]]
harness = false
name = "scalar"
[dependencies.ecdsa-core]
default-features = false
features = ["der"]
optional = true
package = "ecdsa"
version = "0.16"

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

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

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

[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.criterion]
version = "0.4"

[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.proptest]
version = "1"

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

[features]
alloc = ["ecdsa-core?/alloc", "elliptic-curve/alloc"]
arithmetic = ["dep:primeorder", "elliptic-curve/arithmetic"]
bits = ["arithmetic", "elliptic-curve/bits"]
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", "sha256"]
expose-field = ["arithmetic"]
hash2curve = ["arithmetic", "elliptic-curve/hash2curve"]
jwk = ["elliptic-curve/jwk"]
pem = ["elliptic-curve/pem", "ecdsa-core/pem", "pkcs8"]
pkcs8 = ["ecdsa-core?/pkcs8", "elliptic-curve/pkcs8"]
serde = ["ecdsa-core?/serde", "elliptic-curve/serde", "primeorder?/serde", "serdect"]
sha256 = ["digest", "sha2"]
std = ["alloc", "ecdsa-core?/std", "elliptic-curve/std"]
test-vectors = ["dep:hex-literal"]
voprf = ["elliptic-curve/voprf", "sha2"]

[package]
authors = ["RustCrypto Developers"]
categories = ["cryptography", "no-std"]
description = "Pure Rust implementation of the NIST P-256 (a.k.a. secp256r1, prime256v1)\nelliptic curve as defined in SP 800-186, with support for ECDH, ECDSA\nsigning/verification, and general purpose curve arithmetic\n"
documentation = "https://docs.rs/p256"
edition = "2021"
keywords = ["crypto", "ecc", "nist", "prime256v1", "secp256r1"]
license = "Apache-2.0 OR MIT"
name = "p256"
readme = "README.md"
repository = "https://github.com/RustCrypto/elliptic-curves/tree/master/p256"
rust-version = "1.65"
version = "0.13.2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]