# 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 = "plain-aes" version = "0.1.1" authors = ["Mahdi Djaber "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "An implementation of Rijndael's cipher, commonly known as AES." readme = "README.md" keywords = [ "aes", "rijndael", "cipher", "aes128", "aes192", ] categories = [ "algorithms", "cryptography", ] license = "MIT OR Apache-2.0" repository = "https://github.com/emdCatalyst/plain-aes" [lib] name = "plain_aes" path = "src/lib.rs" [[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" [dependencies]