Tagged Questions

Steganography is the study of hidden information in pictures, text, or audio. It covers both methods of concealing information and methods of detecting hidden information.

learn more… | top users | synonyms

16
votes
4answers
700 views

Will random data appended to a JPG make it unusable?

So, to simplify my life I want to be able to append from 1 to 7 additional characters on the end of some jpg images my program is processing*. These are dummy padding (fillers, etc - probably all ...
7
votes
1answer
206 views

Compose synthetic English phrase that would contain 160 bits of recoverable information

I have 160 bits of random data. Just for fun, I want to generate pseudo-English phrase to "store" this information in. I want to be able to recover this information from the phrase. Note: This is ...
7
votes
2answers
1k views

Image Steganography

I'm working on Steganography application. I need to hide a message inside an image file and secure it with a password, with not much difference in the file size. I am using Least Significant Bit ...
7
votes
7answers
1k views

C++ libraries to manipulate images

Do you know any open source/free software C++ libraries to manipulate images in these formats: .jpg .gif .png .bmp ? The more formats it supports, the better. I am implementing a free program in C++ ...
6
votes
2answers
173 views

Generate a pseudo-poem that would contain 160 bits of recoverable information [closed]

I have 160 bits of random data. Just for fun, I want to generate an English pseudo-poem to "store" this information in. I want to be able to recover this information from the poem. ("Poem" here is a ...
6
votes
8answers
5k views

How can you hide information inside a jpg or gif photo?

How can I write some information inside a photo file like jpg or gif without destroying the image? and of course without showing it on the photo since the whole idea is to send information in the file ...
5
votes
1answer
325 views

Update a PDF to include an encrypted, hidden, unique identifier?

Background The idea is this: Person provides contact information for online book purchase Book, as a PDF, is marked with a unique hash Person downloads book PDF passwords are easy to circumvent, or ...
5
votes
3answers
792 views

Simple/Basic steganography algorithms and methods

What are the basic and simpliest steganography algorithms and methods? I mean the steganography applied to images. How does simple program that hides data to images work? What are the main ...
4
votes
2answers
110 views

Making .NET program that hides an image inside an image

I want to start a little pet project that will allow a user to pic an image and then hide that image within another image. Meaning that if you open the dummy-image that's all you'll see. But if you ...
4
votes
3answers
745 views

Combining semacodes and steganography?

Update I asked this question quite a while ago now, and I was curious if anything like this has been developed since I asked the question? I don't even know if there is a term for this kind of ...
3
votes
2answers
218 views

Bit extraction and Steganography

I am playing around with steganography. I am trying to pull a text file from a image. I am able to read the file, get the bits, but I have an issue with the extraction of these bits. int getbits( ...
3
votes
3answers
349 views

Security, Hacking, Cryptography Reading?

I'm very interested in learning about cryptography, steganography, and similar practices. What books, resources, would you guys recommend in this area?
3
votes
1answer
712 views

Does there exist a digital image steganography algorithm which would be resistant to image manipulation?

I'm wondering - is there a steganography solution for digital images which is resistant to image manipulations? With "manipulations" I mean the most standard operations - recompressing JPEGs (or even ...
3
votes
1answer
3k views

QT QImage pixel manipulation problems

I'm currently in the process of writing a steganography application with QT. I am trying to hide my message bits in the least significant bit of the blue colour of the pixel From debugging I can ...
3
votes
10answers
640 views

Can you hide data in text?

I wish to put some text on a page and hide some data in that text. Does anybody know of any methods / patterns that have been used in the past to solve this problem? Example: I have the following ...
2
votes
1answer
48 views

Storing a Bitmap in Android

I am manipulating the values of pixels in a bitmap. In a particular run of the program in Android The source values of Red Green and Blue were 45 13 0 After manipulating the values the values were ...
2
votes
1answer
70 views

Video stegnography in java [closed]

I want to implement the functionality of video steganography in java. Can anyone guide me how to start with it ? What kind of background reading i need to do firstly? The functionality i want is the ...
2
votes
2answers
232 views

GD imagejpeg() compression?

I'm working on a project where I edit the pixels of a jpg in PHP using the GD library. Its very crucial and key to my project that the output from PHP retains the pixel values I set ...
2
votes
2answers
962 views

Bitmap pixel values differ after setPixel() and getPixel() on same pixel

I'm developing a steganography app for a class project which allows a user to encode a secret message image with in another image. I use Bitmap.getPixel(x,y) to retrieve pixel information after ...
2
votes
2answers
307 views

block processing with multiple input matrices

I'm working in matlab processing images for steganography. In my work so far I have been working with block processing command blockproc to break the image up into blocks to work on it. I'm now ...
2
votes
1answer
392 views

Hiding data inside an mp3 file

I am currently working on a project to hide data inside an mp3 file...What I did was, I replaced the last BYTE of every mp3 frame with the bytes from message file(the file to be hidden)... It works ...
2
votes
1answer
257 views

How do I hide 4 alphanumeric characters in PNG using steganography in C?

I've seen a bunch of sample code that does a lot more than I want to do and it seems to have more overhead than I would like (perhaps this is unavoidable). All I want is to hide/retrieve a 4 letter ...
2
votes
1answer
122 views

Which image for steganography?

Which images are suitable for image steganography(Storing behind an image)? In particular JPEG,BMP or TIFF? As JPEG is lossy so is it possible to lose any data if it is hidden behind the image?(using ...
2
votes
2answers
688 views

steganography for audio watermarking

anyone can help me, I'm working on watermarking application for mp3 files with algorithms "echo data hiding". I do not understand to make this algorithm with java or matlab. I hope anyone can help by ...
2
votes
3answers
288 views

A question about Steganography in images with programming

After reading a couple of tutorials on Steganography using Java/.NET I'm under the impression that you grab each individual pixel from the secret image and then place it in the lowest bit of each ...
2
votes
2answers
414 views

Bitmap.Save problems

can anyone tell me if you know to be a problem with Bitmap and steganography for WM 6? I am working on a project and i have to hide a digital signature in a bitmap. The algorithm works perfect, as in ...
2
votes
4answers
877 views

How is steganography implemented in php

Somewhere I found out steganography .. the way of storing or hiding information within another information.. at times certain images are also used to hide the information.. Can i get an example or any ...
1
vote
1answer
175 views

Steganography program giving weird results

I am developing a steganography program for a computer programming class. It appears to gives random ascii symbols. The output is supposed to be BINARY. The encode message method was given to us by ...
1
vote
2answers
195 views

Encoding binary data in a PNG?

I'm looking for information on how to encode a small amount of binary data (say, around 200 bytes) into a PNG through colors; essentially what Hid.im does for .torrent files. Any information or ...
1
vote
1answer
111 views

How can I store raw data in an image file?

I have some raw data in a file that I would like to store in an image file (bmp, jpg, png, or even gif (eegad)). I would like this to be a two way process: I need to be able to reliably convert the ...
1
vote
0answers
522 views

Implementing Audio Steganography using WAVE files [closed]

Can anyone help me out in the method to read WAVE file for implementing LSB based audio steganography? I want to hide text behind WAVE file. I plan to use JAVA.
1
vote
1answer
637 views

Bitmap color change while compressing to png

I'm currently working on a steganogrpahy android app as a class project. I've created an object that will encode an image with in another image and return an encoded bitmap. This code is run in a ...
1
vote
3answers
348 views

algorithm to crack steganography

what is the basic idea behind steganography?ie ,how do you get the hidden information? suppose if it is an image and some text is within that image...how do you get that text?..
1
vote
1answer
56 views

can exif tag exisits with steganogrpahy

I am trying to use steganography and exif to-gather can it be done ?? as in hide data in a file without destroying the exif image. thanks andy
1
vote
1answer
640 views

How do I encapsulate some text information in an image and extract it using MATLAB?

new_img = convert(img, text); (img, text) = convert_back(new_img); Can someone illustrate with a built-in image of MATALB?
0
votes
1answer
68 views

Saving a Bitmap in Android

I am trying to implement a Steganography project for Android. I have manipulated the pixel values and created a new bitmap. Now when i store the bitmap into the phone memory or memory card using ...
0
votes
2answers
70 views

Image-Processing Image Filters

Are there properties of digital images (e.g. dct coefficients, pixel values, YCbCr, others) that remain constant when filters like binarization, grayscale, sepia, etc, or tilting the image by a ...
0
votes
0answers
83 views

How can I edit the bytes code of a JPG file preserving still its header and footer? (in Java)

I already have successfully coded my Steganography program in a PNG file using Java. My program works very well in both PNG and BMP files. But when I tried running my program in a JPG file, the ...
0
votes
0answers
83 views

Steganography Future Prospects [closed]

Hi I am a fifth semester computer science student. Research Groups are being formed in my college in which few students will be assisting the teachers in their project and research works. Since I ...
0
votes
1answer
67 views

Store/camouflage/hide data into musik/sound

I'm wondering if there is a solutions to store, respectably to camouflage data into music/sound (so that a convert to another music format [mp3] should not bother it to much)? Back in the older days ...
0
votes
4answers
145 views

Byte array to string gives “???”

So I am trying to write a steganography program in java. Here is what I have so far (the important parts) private void hideMessage(){ byte[] messageBytes = message.getBytes(); //message is ...
0
votes
2answers
196 views

C# byte[] to List<bool>

From bool[] to byte[]: convert bool[] to byte[] C# But I need to convert a byte[] to a List where the first item in the list is the LSB. I tried the code below but when converting to bytes and back ...
0
votes
2answers
126 views

Storing information in audio

Is it possible to store string or interger value in the audio signal and then retrieve it later.?
0
votes
2answers
134 views

What programming language for steganography?

I will be working on a year-long research project on steganography. It will use animations and I was wondering what programming language would best be suited for this task? Things to consider are ...
0
votes
0answers
66 views

byte value changes of bitmap after decoding

i'm developing steganography app on android. it is client server architecture. server encodes data within image and save modified image on server. but at client side when i'm decoding image with: ...
0
votes
1answer
361 views

using steganography on wavelet compressed image

can someone help in finding a source code for hiding an image(wavelet compressed image) with an image...........im able to obtain source code only for hiding a text with an image......
0
votes
0answers
219 views

Interesting Watermark/Steganography applications ideas

I've started studying watermarks and I wanted to ask if there are any clever,interesting applications with watermarks other then the obvious copyright protection etc. I am able to find the following ...
0
votes
2answers
296 views

Steganography on audio/video with Python

I want to do message embedding in audio/video files using Python. Does anyone have information about some libraries I can use for bit manipulation in audio/video ?
0
votes
1answer
273 views

Data embedding in a binary image using python

I'm new to python and I'm attempting to improve on an existing method of embedding data in a binary image with minimal visual distortion. The current method that I am trying to implement needs to have ...
0
votes
2answers
465 views

android steganography

I'm trying to implement steganography on Android...but the bitmap gets compressed when it's stored, and that changes the pixel values. Is there any other way to store the image? Thanks in advance!!

1 2