stepic-0.4.1/ 0000775 0001750 0001750 00000000000 13226327214 014471 5 ustar kitterma kitterma 0000000 0000000 stepic-0.4.1/setup.py 0000755 0001750 0001750 00000001771 13226327205 016212 0 ustar kitterma kitterma 0000000 0000000 #!/usr/bin/python3 from distutils.core import setup import os import stepic if os.environ.get('RELEASE') != '0': version = stepic.__version__ else: version = stepic.__version__ + '~bzr' setup(name='stepic', version=version, description='Python image steganography', author='Lenny Domnitser', author_email='lenny@domnit.org', maintainer="Scott Kitterman", maintainer_email="scott@kitterman.com", url='https://launchpad.net/stepic', license='GPL', py_modules=['stepic'], scripts=['stepic'], data_files=[('share/doc/stepic', ['COPYING', 'TODO']), ('share/man/man1', ['stepic.1'])], classifiers=[ 'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)', 'Environment :: Console', 'Topic :: Multimedia :: Graphics', 'Topic :: Utilities', 'Development Status :: 6 - Mature', 'Programming Language :: Python :: 3 :: Only' ] ) stepic-0.4.1/doc/ 0000775 0001750 0001750 00000000000 13226327214 015236 5 ustar kitterma kitterma 0000000 0000000 stepic-0.4.1/doc/index.html 0000664 0001750 0001750 00000003542 13226324506 017240 0 ustar kitterma kitterma 0000000 0000000
Python image steganography
Stepic is now maintained at https://launchpad.net/stepic.
The latest release can be found at https://launchpad.net/stepic/+download.
If you are using Debian or Ubuntu, you can install the python-stepic package. Use the command: sudo apt install python-stepic
.
Rizzy is a graphical steganography tool built on Stepic. It supports AES encryption in addition to plain steganography.
There is also an online utility built on Stepic.
Source code is managed as a bzr branch. It can be checked out using the command:
bzr branch lp:stepic
or can be browsed here.
Stepic is © 2007 Lenny Domnitser and © 2018 Scott Kitterman and is release under the GNU GPL 2.
stepic-0.4.1/doc/help.txt 0000664 0001750 0001750 00000001450 13226322445 016730 0 ustar kitterma kitterma 0000000 0000000 Usage: stepic [options] Hide data in an image, or read hidden data from an image Options: --version show program's version number and exit -h, --help show this help message and exit --debug -d, --decode given an image, write out the hidden data file -e, --encode given an image and data file, write out a new image file with the data hidden in it -f FORMAT, --format=FORMAT output image format (optional) -i FILE, --image-in==FILE read in image FILE for decoding or encoding -t FILE, --data-in==FILE read in data FILE for encoding -o FILE, --out==FILE write out to FILE, data when decoding, image when encoding stepic-0.4.1/doc/pydoc/ 0000775 0001750 0001750 00000000000 13226327214 016354 5 ustar kitterma kitterma 0000000 0000000 stepic-0.4.1/doc/pydoc/stepic.html 0000664 0001750 0001750 00000012426 13226322503 020532 0 ustar kitterma kitterma 0000000 0000000 stepic (version 0.4) | index /home/kitterma/devel/stepic/stepic/stepic.py |
Python image steganography
Stepic hides arbitrary data inside PIL images.
Stepic uses the Python Image Library
(apt: python3-pil, web: <http://www.pythonware.com/products/pil/>).
Modules | ||||||
|
Classes | ||||||||||
|
Functions | ||
|
Data | ||
__all__ = ('encode_imdata', 'encode_inplace', 'encode', 'decode_imdata', 'decode', 'Steganographer') __author__ = 'Lenny Domnitser <http://domnit.org/>' __version__ = '0.4' |
Author | ||
Lenny Domnitser <http://domnit.org/> |