A Open-Source & Safe Message Encrypter & Decrypter
Project description
A OpenSource & Safe Message Encryption & Decryption System
Installation
Windows
pip install CryptX
Linux/macOS
python3 -m pip install CryptX
Usage
Terminal/CMD
crx
Python Scipt
CryptX is a safer way to validate password than MD5 as decrypting also requires a Password (Super-Secret-Key)
from CryptX import Encrypter, Decrypter
password = input("Please Enter the Password: ")
password = str(password)
password = Encrypter(password, 'Super-Secret-Key')
pass_login = input("Please Enter The Login Password: ")
pass_login = str(pass_login)
pass_login = Encrypter(pass_login, 'Super-Secret-Key')
if pass_login == password:
print("You have been Logged in!")
else:
print("Incorrect Password")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Close
Hashes for CryptX-2020.3.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 033cb0e401610b703eb09d4999f1faba8a436b64154ee3e63252fb1d32d3efe1 |
|
MD5 | 3b8aab03e50b0ee866201c73c9fa69ed |
|
BLAKE2b-256 | 3016ca1bee4ac0fc14908261862dae05fce8d1b0f4b237db1386c54780c02c2b |