-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Siddhartha Roy edited this page Sep 17, 2021
·
1 revision
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)
r = pie.PiEncrypt('pic.png')
r.get_data()
pic.jpg should be replaced by your picture name present in the root directory
r.hide_data("Hello my name is Sid")
read = r.read_data()
print(read)
r.revert()