Stegan (edma2)
From Just Solve the File Format Problem
(Difference between revisions)
Parchivist (Talk | contribs) (Created page with "{{FormatInfo |formattype=electronic |subcat=Encryption |released=2011 }} '''stegan''' by edma2 (Eugene Ma) is a very basic open source Python steganography library for hiding ...") |
Parchivist (Talk | contribs) |
||
Line 2: | Line 2: | ||
|formattype=electronic | |formattype=electronic | ||
|subcat=Encryption | |subcat=Encryption | ||
+ | |subcat2=Steganography | ||
|released=2011 | |released=2011 | ||
}} | }} |
Latest revision as of 00:02, 2 September 2023
stegan by edma2 (Eugene Ma) is a very basic open source Python steganography library for hiding data in 24-bit PNG images.
The Python Imaging Library models each pixel as a 3 element list, each corresponding to the value of an RGB channel. So, it just randomly chooses an array index from 0 to 2, for each pixel
It encodes 1 bit per 4-byte pixel so it can store just 1/32 of the host image size.