summaryrefslogtreecommitdiffstats
path: root/system/openstego/README
blob: 5f232531a42682d4002e0b3d9fa2ade85368c50c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
OpenStego is a tool implemented in Java for generic steganography,
with support for password-based encryption of the data.

Features:

 - OpenStego is written in pure Java and should run on all platforms
   supported by java. It has been tested on MS Windows and Linux,
   but should not have any problem on other platforms too. Please
   report bugs if you find any.
 - It supports password-based encryption of data for additional
   layer of security. DES algorithm is used for data encryption,
   along with MD5 hashing to derive the DES key from the password
   provided.
 - It uses a plugin based architecture, where various plugins can
   be created for different kind of Steganographic algorithms.
   Currently, it supports two plugins - LSB (Using Least Significant
   Bit of Image Pixels) and RandomLSB (Randomized LSB), but new
   plugins can be created for other algorithms like DCT, FFT, etc.
   Plugins can also be easily added for other type of cover files
   like Audio files.
 - LSB plugins support only 24 bpp images. Support for additional
   image formats (like BMP, TIF, etc.) could be added by installing
   Java Advanced Imaging (JAI).
 - LSB plugins also support generation of random images containing
   noise to be used as cover file. The size of the generated random
   image is the minimum possible size required to embed the given data.