Skip to content

Latest commit

 

History

History
55 lines (44 loc) · 2.47 KB

README.md

File metadata and controls

55 lines (44 loc) · 2.47 KB

▄█ ▄█ ▄█ ▄█ ███ ▄█ █▄ ███ ███ ███ ███ ▀█████████▄ ███ ███ ███ ███▌ ███ ███▌ ▀███▀▀██ ███ ███ ███ ███▌ ███ ███▌ ███ ▀ ▄███▄▄▄▄███▄▄ ███ ███▌ ███ ███▌ ███ ▀▀███▀▀▀▀███▀ ███ ███ ███ ███ ███ ███ ███ ███▌ ▄ ███ ███▌ ▄ ███ ███ ███ ███ █████▄▄██ █▀ █████▄▄██ █▀ ▄████▀ ███ █▀ v1.0.0 Use at your own risk. Criticism and suggestions are welcome.

Go Report Card License: MIT

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.

Installation

You'll need Go to build this cipher.

git clone https://github.com/pre-eth/lilith.git
cd lilith
go build
./lilith -h

Command Line

                                           [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)

Using In Your Project

go get github.com/pre-eth/lilith@v1.0.0