Skip to content

Instantly share code, notes, and snippets.

@lol97
Created January 22, 2019 17:31
Show Gist options
  • Select an option

  • Save lol97/66d318a871db941567c9bcc920f704d3 to your computer and use it in GitHub Desktop.

Select an option

Save lol97/66d318a871db941567c9bcc920f704d3 to your computer and use it in GitHub Desktop.
'''
Stegano Code
with
library stegano
sufyan97
install stegano
pip install stegano
'''
#import lsb method
from stegano import lsb
# insert message
secret = lsb.hide("cat.png","hai")
#save image
secret.save("cat-sec.png")
#show message
print(lsb.reveal("cat-sec.png"))
#THANKS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment