|
|
Title | Hide a message inside a picture (steganography) |
Description | This example shows how to hide a message inside a picture (steganography) in Visual Basic 6. The program hides information in the least significant bits of pseudo-randonly selected pixels. |
Keywords | steganography, hidden message, code |
Categories | Algorithms |
|
|
For each bit in the message, the program picks a pseudo-random pixel in the image and pseudo-randomly picks the pixel's red, green, or blue component. It then sets the least significant bit in that component to 0 or 1 to encode the message bit.
See the code for further details. Also see the tutorial Steganography (Hidden in Plain Sight) for more information on steganography.
For more information on cryptography (but not steganography), see Bruce Schneier's excellent book Applied Cryptography.
|
|
|
|
|
|