[package]
edition = "2024"
rust-version = "1.85"
name = "ecb"
version = "0.2.0"
authors = [
"RustCrypto Developers",
"magic-akari",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Electronic Codebook (ECB) block cipher mode of operation"
documentation = "https://docs.rs/ecb"
readme = "README.md"
keywords = [
"crypto",
"block-mode",
"ciphers",
]
categories = [
"cryptography",
"no-std",
]
license = "MIT"
repository = "https://github.com/magic-akari/ecb"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
alloc = ["cipher/alloc"]
block-padding = ["cipher/block-padding"]
default = ["block-padding"]
zeroize = ["cipher/zeroize"]
[lib]
name = "ecb"
path = "src/lib.rs"
[[test]]
name = "aes"
path = "tests/aes.rs"
[dependencies.cipher]
version = "0.5"
[dev-dependencies.aes]
version = "0.9.0"
[dev-dependencies.cipher]
version = "0.5"
features = ["dev"]
[dev-dependencies.hex-literal]
version = "1"