lioness-vnpmid

Crates.iolioness-vnpmid
lib.rslioness-vnpmid
version0.1.0
sourcesrc
created_at2022-06-25 14:17:15.085361
updated_at2022-06-25 14:17:15.085361
descriptionFork from https://github.com/burdges/lioness-rs because no update since 3 years ago
homepagehttps://github.com/vnpmid/lioness-rs
repositoryhttps://github.com/vnpmid/lioness-rs.git
max_upload_size
id613062
size34,354
vnpmid (vnpmid)

documentation

https://docs.rs/lioness/

README

This crate provides the Lioness wide block cipher instantiated with ChaCha20 and Blake2b.

build status documenation crates.io link

Warning

This code has not been formally audited and should only be use with extreme care and advice from competent cryptographers. That said, Lionness' security properties mostly reduce to the underlying stream cipher and hash function.

Details

Lioness is a wide block cipher built from a stream cipher and a hash function. It remains secure so long as either the stream cipher or the hash function remains secure. Lioness is described in Two Practical and Provably Secure Block Ciphers: BEAR and LION by Ross Anderson and Eli Biham. See https://www.cl.cam.ac.uk/~rja14/Papers/bear-lion.pdf

We instantiate Lioness with Chacha20 and Blake2b here, but you can easily alter these choices so long as the digest output is equal to the stream cipher key size.

Documentation is available at https://docs.rs/lioness/

Installation

This crate works with Cargo and is on crates.io. Add it to your Cargo.toml with:

[dependencies]
lioness-vnpmid = "0.1.0"

Use the crate like:

extern crate lioness;

...

License

Lioness-rs is free software made available via the MIT License. License details located in the LICENSE file.

Commit count: 64

cargo fmt