lioness_blockcipher/Cargo.toml

14 lines
350 B
TOML
Raw Normal View History

2026-04-06 08:01:00 +02:00
[package]
name = "lioness-blockcipher"
version = "0.1.0"
edition = "2024"
description = "LIONESS large-block cipher using RustCrypto ChaCha20 and BLAKE2 with TurboSHAKE as KDF"
license = "MIT OR Apache-2.0"
[dependencies]
anyhow = "1"
blake2 = "0.10"
chacha20 = "0.10"
2026-04-28 14:05:31 +02:00
turboshake = "0.6.0"
2026-04-06 08:01:00 +02:00
zeroize = { version = "1", features = ["zeroize_derive"] }