p256 0.8.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
[dependencies.ecdsa-core]
default-features = false
features = ["der"]
optional = true
package = "ecdsa"
version = "0.11"

[dependencies.elliptic-curve]
default-features = false
features = ["hazmat"]
version = "0.9.11"

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

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

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

[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"]
default = ["arithmetic", "ecdsa", "pkcs8", "std"]
digest = ["ecdsa-core/digest", "ecdsa-core/hazmat"]
ecdh = ["arithmetic", "elliptic-curve/ecdh", "zeroize"]
ecdsa = ["arithmetic", "ecdsa-core/sign", "ecdsa-core/verify", "sha256", "zeroize"]
jwk = ["elliptic-curve/jwk"]
pem = ["elliptic-curve/pem", "pkcs8"]
pkcs8 = ["elliptic-curve/pkcs8", "zeroize"]
sha256 = ["digest", "sha2"]
std = ["ecdsa-core/std", "elliptic-curve/std"]
test-vectors = ["hex-literal"]
zeroize = ["elliptic-curve/zeroize"]

[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/elliptic-curve"
edition = "2018"
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"
version = "0.8.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]