k256 0.5.0

Pure Rust implementation of the secp256k1 elliptic curve with support for ECDH, ECDSA signing/verification support (including Ethereum-style signatures with public-key recovery), and general purpose curve arithmetic
Documentation
[[bench]]
harness = false
name = "bench"
path = "bench/bench.rs"
required-features = ["expose-field"]
[dependencies.cfg-if]
version = "0.1"

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

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

[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.8"

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

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

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

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

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

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

[features]
arithmetic = ["elliptic-curve/arithmetic"]
default = ["arithmetic", "oid", "std"]
digest = ["elliptic-curve/digest", "ecdsa-core/digest"]
ecdh = ["elliptic-curve/ecdh", "zeroize"]
ecdsa = ["arithmetic", "digest", "ecdsa-core/sign", "ecdsa-core/verify", "zeroize"]
endomorphism-mul = []
expose-field = ["arithmetic"]
field-montgomery = []
force-32-bit = []
keccak256 = ["digest", "sha3"]
oid = ["elliptic-curve/oid"]
sha256 = ["digest", "sha2"]
std = ["elliptic-curve/std"]
test-vectors = []
zeroize = ["elliptic-curve/zeroize"]

[package]
authors = ["RustCrypto Developers"]
categories = ["cryptography", "cryptography::cryptocurrencies", "no-std"]
description = "Pure Rust implementation of the secp256k1 elliptic curve with support for ECDH,\nECDSA signing/verification support (including Ethereum-style signatures with\npublic-key recovery), and general purpose curve arithmetic\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"
version = "0.5.0"
[package.metadata.docs.rs]
features = ["ecdh", "ecdsa", "sha256", "keccak256"]
rustdoc-args = ["--cfg", "docsrs"]