sponges/ascon/Cargo.toml
Alexander Wagner e767312a21
ascon: Add Drop & ZeroizeOnDrop for State (#57)
Not zeroizing the state allows to recover any squeezed output. This is
because the `ascon` permutations can be inversed. Hence, access to the
complete state allows to perform this operation.
2023-05-23 15:10:15 +02:00

26 lines
727 B
TOML

[package]
name = "ascon"
version = "0.4.0-pre"
description = "Pure rust implementation of the Ascon permutation"
authors = [
"Sebastian Ramacher <sebastian.ramacher@ait.ac.at>",
"RustCrypto Developers",
]
license = "Apache-2.0 OR MIT"
documentation = "https://docs.rs/ascon"
repository = "https://github.com/RustCrypto/sponges/tree/master/ascon"
keywords = ["Ascon", "crypto", "permutation"]
categories = ["cryptography", "no-std"]
readme = "README.md"
edition = "2021"
rust-version = "1.56"
[dependencies]
zeroize = { version = "1.6.0", default-features = false, optional=true }
[features]
no_unroll = [] # Do not unroll loops for binary size reduction
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]