This project is for data encryption with password protection.
Project description
Ashar Encryption and decryption
This project is for data encryption with password protection.
Installation:
pip install ashar
Usage:
#s
from ashar import ashar
#For encryption
p1=ashar("<PASSWORD>","<TEXT>").encode()
print(p1)
#To decrypt
p2=ashar("<PASSWORD>","<ENCRYPTED_TEXT>").decode()
print(p2)
#e
Examples:
#s
from ashar import ashar
# Example:1
#For encryption
p1=ashar("123","Example:1").encode()
print(p1)
#To decrypt
p2=ashar("123",p1).decode()
print(p2)
#e
Changelog:
1.1.0
- Import pakages by pipincluder.
1.0.6
- You can encrypt anything now.
- Fix bugs.
1.0.0
- Fix bugs.
0.5.5
- Fix bugs.
0.5.4
- Static encryption.
- Fix bugs.
0.5.3
- Fix bugs.
0.5.0
- First public release.
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
ashar-1.1.0.tar.gz
(4.8 kB
view hashes)
Built Distribution
ashar-1.1.0-py3-none-any.whl
(4.9 kB
view hashes)