p256_flow 1.0.0

Flow-Rust-SDK Version of p256 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 Heavily modified for signing Flow blockchain transactions
Documentation
[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 = false
version = "0.9.1"
[dev-dependencies.blobby]
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.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", "std", "sha256"]
digest = ["ecdsa-core/digest", "ecdsa-core/hazmat"]
ecdh = ["arithmetic", "elliptic-curve-flow/ecdh"]
ecdsa = ["arithmetic", "ecdsa-core/sign", "ecdsa-core/verify", "sha256"]
jwk = ["elliptic-curve-flow/jwk"]
pem = ["elliptic-curve-flow/pem", "pkcs8"]
pkcs8 = ["elliptic-curve-flow/pkcs8"]
sha256 = ["digest"]
std = ["ecdsa-core/std", "elliptic-curve-flow/std"]
test-vectors = ["hex-literal"]

[package]
authors = ["RustCrypto Developers"]
categories = ["cryptography", "no-std"]
description = "Flow-Rust-SDK Version of p256\nPure 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\nHeavily modified for signing Flow blockchain transactions\n"
edition = "2018"
keywords = ["crypto", "ecc", "nist", "prime256v1", "secp256r1"]
license = "Apache-2.0 OR MIT"
name = "p256_flow"
readme = "README.md"
repository = "https://github.com/RustCrypto/elliptic-curves/tree/master/p256"
resolver = "2"
version = "1.0.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]