[package]
name = "cipher"
description = "Traits for describing block ciphers and stream ciphers"
version = "0.4.1"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
edition = "2021"
rust-version = "1.56"
documentation = "https://docs.rs/cipher"
repository = "https://github.com/RustCrypto/traits"
keywords = ["crypto", "block-cipher", "stream-cipher", "trait"]
categories = ["cryptography", "no-std"]
[workspace]
members = ["."]
[dependencies]
crypto-common = { version = "0.1.3", path = "../crypto-common" }
inout = "0.1"
blobby = { version = "0.3", optional = true }
zeroize = { version = "1.5", optional = true, default-features = false }
[features]
default = ["alloc"]
alloc = []
std = ["alloc", "crypto-common/std", "inout/std"]
block-padding = ["inout/block-padding"]
rand_core = ["crypto-common/rand_core"]
dev = ["blobby"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]