Search:

Type: Posts; User: Norm

Search: Search took 0.09 seconds.

  1. Replies
    10
    Views
    2,333

    Re: reading LSB of binarydata

    Here's a suggestion: Work with ByteArray streams for easier debugging.
    Write a method that takes two input streams and one output stream. Read the bits from one input stream, add its bits to the...
  2. Replies
    10
    Views
    2,333

    Re: reading LSB of binarydata

    To hide the whole text take the bits of each byte of the text and save them in the LSB of each byte in the image. First bit of first byte of text in LSB of first byte of image, second bit in second...
  3. Replies
    10
    Views
    2,333

    Re: reading LSB of binarydata

    What are you going to do with the other 7 bits? I assume the LSB is of a byte.

    If you read a file, byte by byte, and only save the LSB of each byte, then you would never be able to restore the...
  4. Replies
    10
    Views
    2,333

    Re: reading LSB of binarydata

    Define what you mean by LSB of data.

    Can you give an example?
  5. Replies
    10
    Views
    2,333

    Re: reading LSB of binarydata

    Please define what LSB means and give an example.


    Is filename a String? What does it contain? How is that related to the contents of a text file?
    Are the lineend characters from the file...
  6. Replies
    10
    Views
    2,333

    Re: reading LSB of binarydata

    By LSB I assume you mean the Least Significant Byte of an int value.
    To get that byte, AND the int value with 0xFF.


    I'm not sure what that means. A file is made up of bytes. A byte is made of...
Results 1 to 6 of 6