CRYPTOR is a tool for encrypting and decrypting your things.
from cryptography.fernet import Fernet from art import text2art
text = text2art("CRYPTOR 1.0")
lock = """ .----.
/ \ |
---|
__ |
[ ] |
____ |
'...-' |
""" |
print(lock) print(text)
message = input("Hi! Type text to crypt: ")
key = Fernet.generate_key() #print("Generated key:", key.decode())
fernet = Fernet(key)
encoded_message = fernet.encrypt(message.encode())
print("\nYour crypted message is: \n" + encoded_message.decode())
rate = int(input("\nType stars (max 5)) : "))
Simple Text 'Hi Hacker'
Encrypted Text 'gAAAAABmkE5W4Pji1NXvWqBPMne5PiBg8BoyW61XgTZPORgLa4NS-bnVRH_oEND66sQRqfCibMD6thIhjz5jej-qzL_f9pyX2w=='
Encrypted text is not the same always. It is always changing ,even if it is the same text
CRYPTOR In This Moment Supports Encrypting :
- Version 1.0 : Only Supports Encrypting Text
Coming Updates And Functions :
- Version 1.1 : Support Encrypting and Decrypting Your Own text
- Version 1.2 : Support Encrypting and Decrypting Your Own text | Support Encrypting Your Own Files and Decrypting
MORE VERSIONS AND FUNCTIONS COMING SOON
How to install CRYPTOR ?
Steps
- Open Terminal in Linux or Windows.
- Check do you have the newest Python installed on your computer. If you are not sure you have it type
python
if you see error then install it with this commandsudo apt install python3
or if you have Windows go to that site https://www.python.org/downloads/ and install the newest Python installer and run the installer. - Install
git
to clone this repository and rungit clone https://github.com/ChomisiowiecGamer/CRYPTOR/
or do manual download repository from this site. Command to installgit
on Linuxsudo apt install git
. - Go to that foler manualy or command
cd /your/path/to/downloaded/or/cloned/repository
. - In linux type
ls
on Windows you must go to to theFile Manager
and see what 's inside of this folder. - Type in terminal
pip install -r requirements.txt
. - Type in terminal
python CRYPTOR 1.0.py
and after this your computer ,you ,program are ready to use.