mirror of
https://github.com/cedricbonhomme/Stegano.git
synced 2025-05-12 17:18:30 +02:00
Updated documentation (index.rst).
This commit is contained in:
parent
360ac2bc7c
commit
2e7789af53
1 changed files with 30 additions and 2 deletions
|
@ -6,11 +6,39 @@
|
||||||
Welcome to Stéganô's documentation!
|
Welcome to Stéganô's documentation!
|
||||||
===================================
|
===================================
|
||||||
|
|
||||||
Contents:
|
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 2
|
:maxdepth: 2
|
||||||
|
|
||||||
|
Stéganô is a Python Steganography module.
|
||||||
|
Steganography is the art and science of writing hidden messages in such a way that no one,
|
||||||
|
apart from the sender and intended recipient, suspects the existence of the message, a form
|
||||||
|
of security through obscurity. Consequently, functions provided by Stéganô only hide message,
|
||||||
|
without encryption. Indeed steganography is often used with cryptography.
|
||||||
|
|
||||||
|
The advantage of steganography, over cryptography alone, is that messages do not attract
|
||||||
|
attention to themselves. If you are interested in cryptography have a look at my project pySecret.
|
||||||
|
|
||||||
|
Requirements
|
||||||
|
============
|
||||||
|
|
||||||
|
- Python (2.4 -> 2.7);
|
||||||
|
- Python Imaging Library (PIL).
|
||||||
|
|
||||||
|
Methods of hiding
|
||||||
|
=================
|
||||||
|
|
||||||
|
For the moment, Stéganô implements these methods of hiding:
|
||||||
|
|
||||||
|
- using the red portion of a pixel to hide ASCII messages;
|
||||||
|
- using the Least Significant Bit (LSB) technique;
|
||||||
|
- using the LSB technique with sets based on generators (Sieve for Eratosthenes, Fermat, Mersenne numbers, etc.);
|
||||||
|
- using the description field of the image (JPEG).
|
||||||
|
|
||||||
|
Moreover some methods of steganalysis are provided:
|
||||||
|
|
||||||
|
- steganalysis of LSB encoding in color images;
|
||||||
|
- statistical steganalysis.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Indices and tables
|
Indices and tables
|
||||||
|
|
Loading…
Add table
Reference in a new issue