[package] name = "magic-crypt" version = "4.0.1" authors = ["Magic Len "] edition = "2021" rust-version = "1.65" repository = "https://github.com/magiclen/rust-magiccrypt" homepage = "https://magiclen.org/aes" keywords = ["crypto", "aes", "des", "encrypt", "decrypt"] categories = ["no-std" ,"algorithms", "cryptography"] description = "MagicCrypt is a Java/PHP/NodeJS/Rust library to encrypt/decrypt strings, files, or data, using Data Encryption Standard(DES) or Advanced Encryption Standard(AES) algorithms. It supports CBC block cipher mode, PKCS7 padding and 64, 128, 192 or 256-bits key length." license = "Apache-2.0" include = ["src/**/*", "Cargo.toml", "README.md", "LICENSE"] [dependencies] base64 = { version = "0.22", default-features = false, features = ["alloc"] } cbc = { version = "0.1", features = ["alloc"] } des = "0.8" aes = "0.8" md-5 = "0.10" tiger = "0.2" sha2 = "0.10" crc-any = "2.5" [features] default = ["std"] std = ["base64/std", "cbc/std"]