[package]
edition = "2024"
name = "aesp"
version = "0.1.2"
authors = ["Toby Grice"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Library and optional CLI for AES in parallel. Personal project -- use at your own risk."
readme = "README.md"
keywords = [
"aes",
"crypto",
"gcm",
"ctr",
"aes-gcm",
]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tobygrice/aesp"
[features]
cli = ["dep:clap"]
default = []
test-vectors = ["dep:hex-literal"]
[lib]
name = "aesp"
path = "src/lib.rs"
[[bin]]
name = "aesp"
path = "src/main.rs"
required-features = ["cli"]
[[test]]
name = "aes128gcm"
path = "tests/vectors/aes128gcm.rs"
required-features = ["test-vectors"]
[[test]]
name = "aes256gcm"
path = "tests/vectors/aes256gcm.rs"
required-features = ["test-vectors"]
[[test]]
name = "ecb_tests"
path = "tests/ecb_tests.rs"
required-features = ["test-vectors"]
[[test]]
name = "gcm_tests"
path = "tests/gcm_tests.rs"
[dependencies.clap]
version = "4.5.56"
features = ["derive"]
optional = true
[dependencies.hex-literal]
version = "1.1.0"
optional = true
[dependencies.rand]
version = "0.9.2"
[dependencies.rayon]
version = "1.11.0"
[dependencies.thiserror]
version = "2.0.18"