Endecrypt
A simple python library for encryption and decryption . Library contain 10 (version 1.0) including ciphers and various other cryptography
Donate To Programmer [Donate] -
bc1q9xu6n7cks0gddgqhdp4nqf7je2jetge0ys9sx7knf5653ukpkgmsptykwy
Feature
- Easy to use
- Simple 3 - 4 line code required to convert text to encryption
- Input also accepted
- More feature added Later
Installation
For Windows and MAC User
pip install endecrypt
OR
python -m pip install endecrypt
For Linux User
pip3 install endecrypt
Usage
Simple Encryption
import endecrypt
#Encryption
message_1 = "hello world" #Use Small Word
encryption = 'morse'
endecrypt.encode(message_1 ,encryption)
# >> .... . .-.. .-.. --- .-- --- .-. .-.. -..
#Decryption
message_2 = ".... . .-.. .-.. --- .-- --- .-. .-.. -.." # Don't leave space
decryption = 'morse'
endecrypt.decode(message_2 , decryption)
# >> hello world
Advance Encryption
In Advance Encryption we can use cipher text this library contain 5 ciphers more added later
from endecrypt import cipher
# Encryption
message_1 = "Hello World"
encryption = 'affine' #We Can Use Anything As Variable ex - y = 'affine'
slop_1 =7
slop_2 = 25
cipher.encode(message_1, encryption , slop_1 , slop_2)
# >> WBYYTXTOYU
#Decryption
message_2 = "WBYYTXTOYU"
decryption = 'affine' #We Can Use Anything As Variable ex - y = 'affine'
slop_1 =7
slop_2 = 25
cipher.decode(message_2 , decryption , slop_1 , slop_2)
# >> Hello World
For More Sample Run examples.py
Like my work -
Donate To Programmer [Donate] -
bc1q9xu6n7cks0gddgqhdp4nqf7je2jetge0ys9sx7knf5653ukpkgmsptykwy
Release files for endecrypt 1.9
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| endecrypt-1.9.tar.gz | 6.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| endecrypt-1.9-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 16.1 kB
Release files / endecrypt-1.9.tar.gz
| Download URL | endecrypt-1.9.tar.gz |
|---|---|
| Size | 6.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
46b28b2f7f7355f28164cbf57d0601961800cad54120aba307e9b1f3d465f342
|
|
BLAKE2b-256 checksum How to use checksums |
babb6845b5597cdb64ac6f2a29492dab5cb3bf475d95c9bd41d2a1f64f3eb4b9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.5
|
Release files / endecrypt-1.9-py3-none-any.whl
| Download URL | endecrypt-1.9-py3-none-any.whl |
|---|---|
| Size | 10.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
694301eaa837d28958ca7c64deb80568f60c72711557abc978f66857622d2d27
|
|
BLAKE2b-256 checksum How to use checksums |
ac76a2841bbcebe077b3b4a2a81301e79b40d8479927f9e3a9a75d7de1b242d6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.5
|