[package]
edition = "2024"
rust-version = "1.85"
name = "gift-cipher"
version = "0.1.0"
authors = [
"RustCrypto Developers",
"Schmid7k",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust implementation of the Gift block cipher"
documentation = "https://docs.rs/gift-cipher"
readme = "README.md"
keywords = [
"crypto",
"gift",
"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 = "gift_cipher"
path = "src/lib.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[[bench]]
name = "gift128enc"
path = "benches/gift128enc.rs"
[dependencies.cipher]
version = "0.5"
[dev-dependencies.cipher]
version = "0.5"
features = ["dev"]
[dev-dependencies.hex-literal]
version = "1"