Skip to main content

A simple yet secure encryption package.

Project description

PyEncrypter

PyEncrypter is a simple yet safe Python encryption package. It is still developing, and the encryption level is 1 as of now. I have planned to bring the final encryption level upto 3, which could take some time.


Installation

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

pip install 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 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.0.5.tar.gz (2.9 kB view hashes)

Uploaded Source

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