p256 0.11.1

Pure Rust implementation of the NIST P-256 (a.k.a. secp256r1, prime256v1) elliptic curve 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.14"

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

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

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

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

[dev-dependencies.criterion]
version = "0.3"

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

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

[dev-dependencies.proptest]
version = "1.0"

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

[features]
arithmetic = ["elliptic-curve/arithmetic"]
bits = ["arithmetic", "elliptic-curve/bits"]
default = ["arithmetic", "ecdsa", "pkcs8", "std"]
digest = ["ecdsa-core/digest", "ecdsa-core/hazmat"]
ecdh = ["arithmetic", "elliptic-curve/ecdh"]
ecdsa = ["arithmetic", "ecdsa-core/sign", "ecdsa-core/verify", "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", "serdect"]
sha256 = ["digest", "sha2"]
std = ["ecdsa-core/std", "elliptic-curve/std"]
test-vectors = ["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 with support for ECDH, ECDSA signing/verification, and general\npurpose 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"
resolver = "2"
rust-version = "1.57"
version = "0.11.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]