k256 0.9.3

secp256k1 elliptic curve library written in pure Rust with support for ECDSA signing/verification (including Ethereum-style signatures with public-key recovery), Elliptic Curve Diffie-Hellman (ECDH), and general purpose secp256k1 curve arithmetic useful for implementing arbitrary group-based protocols.
Documentation
[[bench]]
harness = false
name = "ecdsa"
path = "bench/ecdsa.rs"
required-features = ["ecdsa", "sha256"]

[[bench]]
harness = false
name = "field"
path = "bench/field.rs"
required-features = ["expose-field"]

[[bench]]
harness = false
name = "scalar"
path = "bench/scalar.rs"
[dependencies.cfg-if]
version = "1.0"

[dependencies.ecdsa-core]
default-features = false
features = ["der"]
optional = true
package = "ecdsa"
version = "0.12.1"

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

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

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

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

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

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

[dev-dependencies.num-bigint]
version = "0.4"

[dev-dependencies.num-traits]
version = "0.2"

[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", "sha256", "std"]
digest = ["ecdsa-core/digest", "ecdsa-core/hazmat"]
ecdh = ["arithmetic", "elliptic-curve/ecdh", "zeroize"]
ecdsa = ["arithmetic", "digest", "ecdsa-core/sign", "ecdsa-core/verify", "zeroize"]
expose-field = ["arithmetic"]
field-montgomery = []
force-32-bit = []
jwk = ["elliptic-curve/jwk"]
keccak256 = ["digest", "sha3"]
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", "cryptography::cryptocurrencies", "no-std"]
description = "secp256k1 elliptic curve library written in pure Rust with support for ECDSA\nsigning/verification (including Ethereum-style signatures with public-key\nrecovery), Elliptic Curve Diffie-Hellman (ECDH), and general purpose secp256k1\ncurve arithmetic useful for implementing arbitrary group-based protocols.\n"
documentation = "https://docs.rs/elliptic-curve"
edition = "2018"
keywords = ["bitcoin", "crypto", "ecc", "ethereum", "secp256k1"]
license = "Apache-2.0 OR MIT"
name = "k256"
readme = "README.md"
repository = "https://github.com/RustCrypto/elliptic-curves/tree/master/k256"
resolver = "2"
version = "0.9.3"
[package.metadata.docs.rs]
features = ["ecdh", "ecdsa", "sha256", "keccak256"]
rustdoc-args = ["--cfg", "docsrs"]