+ 14
Which programming language is best steganography ?
I want to build a software for steganography process any one suggest me which programming language best for this process
11 Antworten
+ 10
python is best for both cryptography and steganography.
+ 7
Maninder Singh That highly depends on the use case, I would never implement RSA or even a hashing algorithm in python, it's simply too slow.
I would recommend a language like C, since you'll be working with raw data if you're doing steganography.
+ 6
I think it depends on the user ...if he want to make app or website using html ,js,css but I can assume that app can be possible bcoz it's doesn't have copyrights for this..
+ 4
I have completed my project on steganography process and it is written in c#
+ 4
hi Kirt Schafer, The only reason I could get PPMextract to detect the Hidden message is that the PPM file is a very simple image file with no compression. since I wrote this code and knew image format, I was able to find the hidden information. The way I did it was to clip the image on the least significant bit and then expand the least significant bit's contrast till you have an all black or white image. It's still required a human being to determine whether there was code or not code in the image. Our pattern recognition ability is amazing. this one bit image though badly degraded was still recognizable as the original picture in black-and-white. if you could see a multi colored line or lines across part of the picture that was the hidden message. remember I store three bits of information in a pixel, one in each of the 3 color sub pixels. Again this was only because I knew the format exactly and knew exactly how it was encoded. If it used an image format that had any lossless compression I would not of been able to do this.
+ 3
my project resolves the problem of sharing confidential data...
regards
#happy_coding
+ 3
steganography software. We used ppm format image files and store the data in the least significant bit of each pixel. A color pixel holds three bits of hidden data, one for the blue one for the green and one for the red byte
Steganography Java code
From 1998 to 2001 in java 1.0.2
PPMextract.java
https://code.sololearn.com/cMTuQnDcqJnb/?ref=app
PPMviewer2.java
https://code.sololearn.com/co6KSKz0pala/?ref=app
PPMencode.java
https://code.sololearn.com/c4QGtF4oDQVW/?ref=app
PPMdecode.java
https://code.sololearn.com/c7H1NG847T1r/?ref=app
+ 2
in 2001 friend of mine and I wrote some steganography software. We used ppm format image files and store the data in the least significant bit of each pixel. I wrote my code in java with the AWT GUI, my friend Matt wrote his code in C. I was an Internet security consultant for one of those three letter government agencies, they were amazed at the amount information I could send invisibly with this code. I can probably unarchive the source files and Post them on SoloLearn now. Matt and I did this for fun.
+ 2
Note, if I can detect that a secondary message exists you have "lost stego" / the message is discovered.
How the message is inserted tends to be a "don't-care" vs. plausible deniability.
+ 1
+ 1
Yes python is good for programming,