Really helped me understand Steganography.
But I think the following assumption goes wrong when the message to be encoded is too long.
Quote
thought it important to explain this operation. This method could just as easily be written as:
CODE
private byte[] bit_conversion(int i)
{
return(new byte[]{0,0,0, (byte)(i & 0x000000FF));
}
CODE
private byte[] bit_conversion(int i)
{
return(new byte[]{0,0,0, (byte)(i & 0x000000FF));
}
Great work.
Keep it up.