[package]
edition = "2021"
name = "softaes"
version = "0.1.5"
authors = ["Frank Denis <github@pureftpd.org>"]
build = false
include = [
"src/**/*.rs",
"tests/**/*.rs",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast software implementation of the AES round function in pure Rust"
homepage = "https://github.com/jedisct1/rust-softaes"
readme = "README.md"
keywords = [
"crypto",
"aes",
"software",
]
categories = [
"no-std",
"cryptography",
"wasm",
]
license = "MIT"
repository = "https://github.com/jedisct1/rust-softaes"
[lib]
name = "softaes"
path = "src/lib.rs"
[[test]]
name = "kat"
path = "tests/kat.rs"
[[test]]
name = "protected_round"
path = "tests/protected_round.rs"