Skip to main content

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


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

CryptX-2020.3.1-py3-none-any.whl (2.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page