plain-aes 0.1.1

An implementation of Rijndael's cipher, commonly known as AES.
Documentation
[dependencies]

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

[package]
authors = ["Mahdi Djaber <mahdios.dj@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["algorithms", "cryptography"]
description = "An implementation of Rijndael's cipher, commonly known as AES."
edition = "2021"
keywords = ["aes", "rijndael", "cipher", "aes128", "aes192"]
license = "MIT OR Apache-2.0"
name = "plain-aes"
readme = "README.md"
repository = "https://github.com/emdCatalyst/plain-aes"
version = "0.1.1"

[[test]]
name = "aes128_cbc_decryption_test"
path = "tests/aes128_cbc_decryption_test.rs"

[[test]]
name = "aes128_cbc_encryption_test"
path = "tests/aes128_cbc_encryption_test.rs"

[[test]]
name = "aes128_ecb_decryption_test"
path = "tests/aes128_ecb_decryption_test.rs"

[[test]]
name = "aes128_ecb_encryption_test"
path = "tests/aes128_ecb_encryption_test.rs"

[[test]]
name = "aes192_cbc_decryption_test"
path = "tests/aes192_cbc_decryption_test.rs"

[[test]]
name = "aes192_cbc_encryption_test"
path = "tests/aes192_cbc_encryption_test.rs"

[[test]]
name = "aes192_ecb_decryption_test"
path = "tests/aes192_ecb_decryption_test.rs"

[[test]]
name = "aes192_ecb_encryption_test"
path = "tests/aes192_ecb_encryption_test.rs"