[package] name = "cbc" version = "0.2.0-pre.2" description = "Cipher Block Chaining (CBC) block cipher mode of operation" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" edition = "2021" rust-version = "1.65" readme = "README.md" documentation = "https://docs.rs/cbc" repository = "https://github.com/RustCrypto/block-modes" keywords = ["crypto", "block-mode", "ciphers"] categories = ["cryptography", "no-std"] [dependencies] cipher = "=0.5.0-pre.7" [dev-dependencies] aes = "=0.9.0-pre.2" cipher = { version = "=0.5.0-pre.7", features = ["dev"] } hex-literal = "0.4" [features] default = ["block-padding"] alloc = ["cipher/alloc"] std = ["cipher/std", "alloc"] block-padding = ["cipher/block-padding"] zeroize = ["cipher/zeroize"] [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"]