Skip to main content

A simple yet secure encryption package.

Project description

PyEncrypter

PyEncrypter is a simple yet safe Python encryption/decryption library. In some time, the main release will be officialy published.


Installation

All you need to do is just type the following code in your terminal to install, or you could copy and paste it as well.

pip install PyEncrypter

If it doesn't work, you could try the following:

python.exe -m pip install --user PyEncrypter

Commands

#Importing the package
import PyEncrypter
#Initializing the object
variable = PyEncrypter.ObjInit()
#Encryption command
variable.encrypt(data)
#Decryption command
variable.decrypt(data)

Note: It is strongly advisable to delete the object after usage of the command by the "del variable" command.

Examples for usage

import PyEncrypter
var = input("Enter your message: ")
secret_code = PyEncrypter.ObjInit()
secret_code.encrypt(var)
print("Your secret code is", secret_code)
del secret_code

var2 = input("Enter secret code: ")
message = PyEncrypter.ObjInit()
message.decrypt(var2)
print("Your message is", message)
del message

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

PyEncrypter-0.2.3.tar.gz (4.0 kB view hashes)

Uploaded Source

Built Distribution

PyEncrypter-0.2.3-py3-none-any.whl (4.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