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
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 Distribution
PyEncrypter-0.2.3.tar.gz
(4.0 kB
view details)
Built Distribution
File details
Details for the file PyEncrypter-0.2.3.tar.gz
.
File metadata
- Download URL: PyEncrypter-0.2.3.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b0e9bcd1ddbca36cc7b37c5d1e5ee0e19c5cddd3f1cb9a14dfa17daadff4046 |
|
MD5 | 8f382c22015ab924c8ecea7588cef088 |
|
BLAKE2b-256 | 4cad9529a70853b42b7901630ef11597ec06507fa5b4c425301ad497a45d9b61 |
File details
Details for the file PyEncrypter-0.2.3-py3-none-any.whl
.
File metadata
- Download URL: PyEncrypter-0.2.3-py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9aace6ac6c1aa8420cc0a19b1577585e61b3b2e7ddfddfc7ef903d2169622d62 |
|
MD5 | 189dbdc77823bcfa54e9c5f0a84c7ac0 |
|
BLAKE2b-256 | 6748bb4cf0ecfc97973410f1d7aa193762d1da274a8733713cce0d97f96b87b8 |