Skip to content

CRYPTOR is a tool for encrypting and decrypting your things.

License

Notifications You must be signed in to change notification settings

ChomisiowiecGamer/CRYPTOR

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

CRYPTOR

CRYPTOR is a tool for encrypting and decrypting your things.

image from cryptography.fernet import Fernet from art import text2art

Stwórz napis "CRYPTOR 1.0" za pomocą modułu art

text = text2art("CRYPTOR 1.0")

ASCII art dla kłódki

lock = """ .----.

/ \
__
[ ]
____
'...-'
"""

Wyświetl kłódkę obok napisu

print(lock) print(text)

Do szyfrowania

message = input("Hi! Type text to crypt: ")

Klucz

key = Fernet.generate_key() #print("Generated key:", key.decode())

fernet = Fernet(key)

Szyfrowanie

encoded_message = fernet.encrypt(message.encode())

Wyświetl Zakodowany Tekst

print("\nYour crypted message is: \n" + encoded_message.decode())

Opinia

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

image

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

  1. Open Terminal in Linux or Windows.
  2. 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 command sudo 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.
  3. Install git to clone this repository and run git clone https://github.com/ChomisiowiecGamer/CRYPTOR/ or do manual download repository from this site. Command to install git on Linux sudo apt install git.
  4. Go to that foler manualy or command cd /your/path/to/downloaded/or/cloned/repository.
  5. In linux type ls on Windows you must go to to the File Manager and see what 's inside of this folder.
  6. Type in terminal pip install -r requirements.txt.
  7. Type in terminal python CRYPTOR 1.0.py and after this your computer ,you ,program are ready to use.

About

CRYPTOR is a tool for encrypting and decrypting your things.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages