Like a hasher
L-hash(Like a hasher) is a python program that acts as an oversimplified hashing algorithm. It encrypts and decrypts any file you give it.
L-hash requires Python3 on the device.
Clone the Repository;
$ git clone https://github.com/PrashantMhrzn/L-hash.git
CD into the cloned directory;
$ cd L-hash/
Run Lhash.py;
$ python3 Lhash.py -e raw.txt
$ python3 Lhash.py -d encoded.txt
$ python3 Lhash.py [-e for encrypt/-d for decrypt] [file name]
$ python3 Lhash.py -h
usage: Lhash.py [-h] [-e] [-d]
Encrypt or decrypt a file
optional arguments:
-h, --help show this help message and exit
-e , --encrypt_file file you want to encrypt
-d , --decrypt_file file you want to decrypt
$ python3 Lhash.py -e raw.txt
File encrypted as encoded.txt
$ python3 Lhash.py -d encoded.txt
File decrypted as decoded.txt