Skip to content Skip to navigation

Connexions

You are here: Home » Content » Bit-O-Steg Hiding

Navigation

Content Actions

  • Download module PDF
  • Add to ...
    Add the module to:
    • My Favorites
    • A lens
    • An external social bookmarking service
    • My Favorites (What is 'My Favorites'?)
      'My Favorites' is a special kind of lens which you can use to bookmark modules and collections directly in Connexions. 'My Favorites' can only be seen by you, and collections saved in 'My Favorites' can remember the last module you were on. You need a Connexions account to use 'My Favorites'.
    • A lens (What is a lens?)

      Definition of a lens

      Lenses

      A lens is a custom view of Connexions content. You can think of it as a fancy kind of list that will let you see Connexions through the eyes of organizations and people you trust.

      What is in a lens?

      Lens makers point to Connexions materials (modules and collections), creating a guide that includes their own comments and descriptive tags about the content.

      Who can create a lens?

      Any individual Connexions member, a community, or a respected organization.

    • External bookmarks
  • E-mail the authors

Lenses

What is a lens?

Definition of a lens

Lenses

A lens is a custom view of Connexions content. You can think of it as a fancy kind of list that will let you see Connexions through the eyes of organizations and people you trust.

What is in a lens?

Lens makers point to Connexions materials (modules and collections), creating a guide that includes their own comments and descriptive tags about the content.

Who can create a lens?

Any individual Connexions member, a community, or a respected organization.

This content is ...

Affiliated with (What does "Affiliated with" mean?)

This content is either by members of the organizations listed or about topics related to the organizations listed. Click each link to see a list of all content affiliated with the organization.
  • Rice University ELEC 301 Projects

    This module is included inLens: Rice University ELEC 301 Project Lens
    By: Rice University ELEC 301As a part of collection:"ELEC 301 Projects Fall 2005"

    Click the "Rice University ELEC 301 Projects" link to see all content affiliated with them.

Recently Viewed

This feature requires Javascript to be enabled.

Bit-O-Steg Hiding

Module by: Danny Blanco, Elliot Ng, Charlie Ice, Bryan Grandy

Data Hiding Methods

Bit-O-Steg

Hiding Information

As you should recall, our zeros hiding method inserts data into the dropped coefficients of the DCT. The bit-o-steg algorithm hides data within the coefficients that were not dropped. The critical part of bit-o-steg is the key used to encrypt the data. This user defined key selects which nonzero coefficients to change and which bits to change within each coefficient. The simplest key would be a key of [1]. This would change each coefficient sequentially and change the last bit in the coefficient.

Figure 1: The key is what makes bit-o-steg unique from other algorithms. Here a key of [1 2] is applied to hide the data.
Figure 1 (bit-o-steg_key)

As you can see in figure 1, we chose a key of [1 2]. The key will select the first coefficient and its least significant bit and input the first bit of the hidden data into that coefficient bit. Then the key will count two coefficients and take the second least significant bit and repeat the hiding process. Since this is the end of the key, it repeats, selecting the next coefficient. The length of this key has no real bound, but it must ensure that all data is hidden before reaching the last DCT coefficient in the image. There is, however, a range of values that must be selected for the key to work. Since the key alters bits, values between one and eight must be used. However, if larger values are used, it will alter the image greatly since it changes more and more significant bits.

Figure 2: Minimal changes have been made to the picture matrix after the application of the bit-o-steg algorithm
Figure 2 (bit-o-steg_result)

Retrieving the Data

Retrieving the data is impossible unless you have the special key used to hide the data. Once you get the key you simply reverse apply the key, extracting rather than inputting the bits and reconstruct your hidden data stream from those bits.

Comments, questions, feedback, criticisms?

Send feedback