asmcrypto 0.1.0

Register-parallel cryptographic primitives: 8-lane AVX-512 Keccak-256 batch and secp256k1 ECDSA batch address recovery, outperforming libsecp256k1.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "asmcrypto"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Register-parallel cryptographic primitives: 8-lane AVX-512 Keccak-256 batch and secp256k1 ECDSA batch address recovery, outperforming libsecp256k1."
documentation = "https://docs.rs/asmcrypto"
readme = "README.md"
keywords = [
    "keccak",
    "ecdsa",
    "secp256k1",
    "avx512",
    "ethereum",
]
categories = [
    "cryptography",
    "algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/andy-thomason/asmcrypto"

[lib]
name = "asmcrypto"
path = "src/lib.rs"

[[example]]
name = "ecdsa_batch"
path = "examples/ecdsa_batch.rs"

[[example]]
name = "gen_g_tables"
path = "examples/gen_g_tables.rs"

[[example]]
name = "keccak_batch"
path = "examples/keccak_batch.rs"

[[example]]
name = "timeline_ecdsa"
path = "examples/timeline_ecdsa.rs"

[[bench]]
name = "ecdsa"
path = "benches/ecdsa.rs"
harness = false

[[bench]]
name = "keccak"
path = "benches/keccak.rs"
harness = false

[[bench]]
name = "mul_wide"
path = "benches/mul_wide.rs"
harness = false

[dependencies]

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.k256]
version = "0.13"
features = ["ecdsa"]

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

[dev-dependencies.secp256k1]
version = "0.29"
features = [
    "recovery",
    "global-context",
]

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

[dev-dependencies.tiny-keccak]
version = "2"
features = ["keccak"]

[profile.bench]
debug = 2