▄█ ▄█ ▄█ ▄█ ███ ▄█ █▄ ███ ███ ███ ███ ▀█████████▄ ███ ███ ███ ███▌ ███ ███▌ ▀███▀▀██ ███ ███ ███ ███▌ ███ ███▌ ███ ▀ ▄███▄▄▄▄███▄▄ ███ ███▌ ███ ███▌ ███ ▀▀███▀▀▀▀███▀ ███ ███ ███ ███ ███ ███ ███ ███▌ ▄ ███ ███▌ ▄ ███ ███ ███ ███ █████▄▄██ █▀ █████▄▄██ █▀ ▄████▀ ███ █▀ v1.0.0 Use at your own risk. Criticism and suggestions are welcome.
LILITH is a stream cipher written in pure Go. It implements the algorithm described in the paper Kashmar, Dr & Ismail, Eddie Shahril. (2017). Blostream: A high speed stream cipher. Journal of Engineering Science and Technology. 12. 1111-1128. It passes the NIST Statistical Test Suite like the algorithm in the paper as well, with results available in the tests directory.
You'll need Go to build this cipher.
git clone https://github.com/pre-eth/lilith.git
cd lilith
go build
./lilith -h
[OPTIONS]
-d Decrypt the provided file.
-e Encrypt the provided file.
-f string
File name where input is read from
-j Save decrypted output as a JPEG
-n string
File name containing 96-bit nonce. Must be a binary file.
-o string
File name where output is written to.
-p Save decrypted output as a PNG
-q Quick mode - reduce interface FX
-r Round trip operation - encrypt and then decrypt
-s string
File name containing 128-bit seed. Must be a binary file.
-t Save decrypted output as a text file
-v Version of this software (1.0.0)
go get github.com/pre-eth/[email protected]