lioness_blockcipher/Cargo.toml

21 lines
555 B
TOML
Raw Permalink 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"
2026-05-01 16:08:57 +03:00
blake2 = "0.11.0-pre.4"
chacha20 = "0.10.0-pre.3"
2026-04-28 14:05:31 +02:00
turboshake = "0.6.0"
2026-05-01 16:08:57 +03:00
aes = "0.9.0-pre.2"
ctr = "0.10.0-pre.2"
sha2 = "0.11.0-pre.4"
sha3 = "0.11.0-pre.4"
hmac = "0.13.0-pre.4"
hkdf = "0.13.0-pre.4"
2026-04-06 08:01:00 +02:00
zeroize = { version = "1", features = ["zeroize_derive"] }
2026-05-01 16:08:57 +03:00
rand_core = { version = "0.6.4", features = ["getrandom"] }