PiEncrypt
Encrypt your crucial data into Image file.
pip install piencrypt
latest release 0.7.5.6
Minimal app
from piencrypt import pie
r = pie.PiEncrypt('pic.png')
r.get_data()
r.hide_data("Hello my name is Sid")
read = r.read_data()
r.revert()
print(read)
Initialize and create a backup of the picture as bytes
r = pie.PiEncrypt('pic.png')
r.get_data()
pic.jpg should be replaced by your picture name present in the root directory
Hide the disired data into the picture
r.hide_data("Hello my name is Sid")
Read the hidden data from the picture
read = r.read_data()
print(read)
Revert the picture from the backup file
r.revert()
https://pypi.org/project/piencrypt/
Top comments (1)
Check the repo here