k256_flow 1.0.0

Flow-Rust-SDK Version of k256 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. Heavily modified for signing Flow blockchain transactions
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-flow"
version = "1.0.0"

[dependencies.elliptic-curve-flow]
version = "1.0.0"

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

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

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

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

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

[package]
authors = ["RustCrypto Developers"]
categories = ["cryptography", "cryptography::cryptocurrencies", "no-std"]
description = "Flow-Rust-SDK Version of k256\nsecp256k1 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\nHeavily modified for signing Flow blockchain transactions\n"
edition = "2018"
keywords = ["bitcoin", "crypto", "ecc", "ethereum", "secp256k1"]
license = "Apache-2.0 OR MIT"
name = "k256_flow"
readme = "README.md"
repository = "https://github.com/RustCrypto/elliptic-curves/tree/master/k256"
resolver = "2"
version = "1.0.0"
[package.metadata.docs.rs]
features = ["ecdh", "ecdsa", "sha256", "keccak256"]
rustdoc-args = ["--cfg", "docsrs"]