softaes 0.1.5

Fast software implementation of the AES round function in pure Rust
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 = "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"