[package]
edition = "2024"
rust-version = "1.85"
name = "des"
version = "0.9.0"
authors = ["RustCrypto Developers"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "DES and Triple DES (3DES, TDES) block ciphers implementation"
documentation = "https://docs.rs/des"
readme = "README.md"
keywords = [
"crypto",
"des",
"tdes",
"block-cipher",
]
categories = [
"cryptography",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/RustCrypto/block-ciphers"
[package.metadata.docs.rs]
all-features = true
[features]
zeroize = ["cipher/zeroize"]
[lib]
name = "des"
path = "src/lib.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[[test]]
name = "weak"
path = "tests/weak.rs"
[[bench]]
name = "mod"
path = "benches/mod.rs"
[dependencies.cipher]
version = "0.5"
[dev-dependencies.cipher]
version = "0.5"
features = ["dev"]
[dev-dependencies.hex-literal]
version = "1"