mirror of
https://github.com/saymrwulf/anza-cryptography-source.git
synced 2026-09-04 20:24:04 +00:00
* impl secp256r1 * CI * refactor: remove sigantures; add msm * clean up scalar_mul APIs * ci * address comments * CI * fix Eq/PartialEq bug for projective point
27 lines
512 B
TOML
27 lines
512 B
TOML
[package]
|
|
name = "secp256r1"
|
|
description = "Pure-Rust secp256r1/P-256 field, scalar, and group operations"
|
|
version = "0.1.0"
|
|
authors = { workspace = true }
|
|
repository = { workspace = true }
|
|
homepage = { workspace = true }
|
|
license = { workspace = true }
|
|
edition = "2024"
|
|
readme = "README.md"
|
|
|
|
[dev-dependencies]
|
|
criterion.workspace = true
|
|
openssl.workspace = true
|
|
p256.workspace = true
|
|
|
|
[[bench]]
|
|
name = "field"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "group"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "scalar"
|
|
harness = false
|