A simple tool that encodes and decodes text using a password in .txt files.
- It can encode and decode text.
- It can work with text and
.txt
files. - It lock/unlock the text with a password.
- Make sure that the latest python is installed on your system (Windows/Linux/MacOS).
Parameter | Usage |
---|---|
-e | Set the tool to encode the input. |
-d | Set the tool to decode the input. |
-p | Password of text or .txt files. |
-i | Text or .txt file to encode or decode. |
-o | The .txt file that stores output. |
-h | Show help message and exit from tool. |
- While using text as input, put your text inside
""
. - Give any name you want to the output
.txt
file.
- Download or Clone the Repository.
- Open the folder.
- Open CMD/Powershell (Windows) or Terminal (Linux/MacOS) in that folder.
- It supports both text and
.txt
files.
python TextGuardian.py -e -p <PASSWORD> -i "Text" -o <ENCRYPTED-OUTPUT-FILE>.txt
python TextGuardian.py -d -p <PASSWORD> -i <ENCRYPTED-OUTPUT-FILE>.txt -o <DECRYPTED-OUTPUT-FILE>.txt
python TextGuardian.py -e -p <PASSWORD> -i <ORIGINAL-TXT-FILE>.txt -o <ENCRYPTED-OUTPUT-TXT-FILE>.txt
python TextGuardian.py -d -p <PASSWORD> -i <ENCRYPTED-OUTPUT-TXT-FILE>.txt -o <DECRYPTED-OUTPUT-TXT-FILE>.txt