From 673f7b5bc4f96252f3e0e11bfcf56f81cda4f127 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bonhomme?= Date: Thu, 19 Jan 2017 07:22:51 +0100 Subject: [PATCH] Prepare the new minor release (bug fix). --- CHANGELOG.rst | 6 ++++++ bin/lsb | 2 +- bin/lsb-set | 2 +- bin/steganalysis-parity | 2 +- bin/steganalysis-statistics | 2 +- docs/conf.py | 4 ++-- setup.py | 2 +- stegano/exifHeader/exifHeader.py | 5 +++-- stegano/lsb/lsb.py | 2 +- stegano/lsbset/generators.py | 2 +- stegano/lsbset/lsbset.py | 2 +- stegano/red/red.py | 2 +- stegano/steganalysis/parity.py | 2 +- stegano/steganalysis/statistics.py | 2 +- stegano/tools.py | 2 +- tests/test_exifHeader.py | 5 +++-- tests/test_lsb.py | 2 +- tests/test_lsbset.py | 2 +- tests/test_red.py | 2 +- 19 files changed, 29 insertions(+), 21 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c9ea386..1ed6320 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ Release History =============== +0.6.2 (2017-01-19) +------------------ + +* bugfix: solved a bug when the image data is coming via byte streams (ByteIO), + for the exifHeader hiding method. + 0.6.1 (2016-08-25) ------------------ diff --git a/bin/lsb b/bin/lsb index fd9eeeb..0987852 100755 --- a/bin/lsb +++ b/bin/lsb @@ -2,7 +2,7 @@ #-*- coding: utf-8 -*- # Stéganô - Stéganô is a basic Python Steganography module. -# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org +# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano # diff --git a/bin/lsb-set b/bin/lsb-set index 5421e33..bf1a7a0 100755 --- a/bin/lsb-set +++ b/bin/lsb-set @@ -2,7 +2,7 @@ #-*- coding: utf-8 -*- # Stéganô - Stéganô is a basic Python Steganography module. -# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org +# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano # diff --git a/bin/steganalysis-parity b/bin/steganalysis-parity index 96284a8..d5c4b01 100644 --- a/bin/steganalysis-parity +++ b/bin/steganalysis-parity @@ -2,7 +2,7 @@ #-*- coding: utf-8 -*- # Stéganô - Stéganô is a basic Python Steganography module. -# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org +# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano # diff --git a/bin/steganalysis-statistics b/bin/steganalysis-statistics index bbc1058..7e7faa7 100644 --- a/bin/steganalysis-statistics +++ b/bin/steganalysis-statistics @@ -2,7 +2,7 @@ #-*- coding: utf-8 -*- # Stéganô - Stéganô is a basic Python Steganography module. -# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org +# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano # diff --git a/docs/conf.py b/docs/conf.py index 405ec33..ab5ddee 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -41,7 +41,7 @@ master_doc = 'index' # General information about the project. project = u'Stéganô' -copyright = u'2012-2016, Cédric Bonhomme' +copyright = u'2012-2017, Cédric Bonhomme' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -50,7 +50,7 @@ copyright = u'2012-2016, Cédric Bonhomme' # The short X.Y version. version = '0.6' # The full version, including alpha/beta/rc tags. -release = '0.6.1' +release = '0.6.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index c33acdc..04cd3eb 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ with open('CHANGELOG.rst', 'r') as f: setup( name='Stegano', - version='0.6.1', + version='0.6.2', author='Cédric Bonhomme', author_email='cedric@cedricbonhomme.org', packages=packages, diff --git a/stegano/exifHeader/exifHeader.py b/stegano/exifHeader/exifHeader.py index bf9eb74..6133c55 100644 --- a/stegano/exifHeader/exifHeader.py +++ b/stegano/exifHeader/exifHeader.py @@ -2,7 +2,7 @@ #-*- coding: utf-8 -*- # Stéganô - Stéganô is a basic Python Steganography module. -# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org +# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano # @@ -20,8 +20,9 @@ # along with this program. If not, see __author__ = "Cedric Bonhomme" -__version__ = "$Revision: 0.2.1 $" +__version__ = "$Revision: 0.2.2 $" __date__ = "$Date: 2016/05/26 $" +__revision__ = "$Date: 2017/01/18 $" __license__ = "GPLv3" from PIL import Image diff --git a/stegano/lsb/lsb.py b/stegano/lsb/lsb.py index 229d8c9..917e5ce 100755 --- a/stegano/lsb/lsb.py +++ b/stegano/lsb/lsb.py @@ -2,7 +2,7 @@ #-*- coding: utf-8 -*- # Stéganô - Stéganô is a basic Python Steganography module. -# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org +# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano # diff --git a/stegano/lsbset/generators.py b/stegano/lsbset/generators.py index d158614..bc52aff 100644 --- a/stegano/lsbset/generators.py +++ b/stegano/lsbset/generators.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # Stéganô - Stéganô is a basic Python Steganography module. -# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org +# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano # diff --git a/stegano/lsbset/lsbset.py b/stegano/lsbset/lsbset.py index d4047b1..038abc1 100644 --- a/stegano/lsbset/lsbset.py +++ b/stegano/lsbset/lsbset.py @@ -2,7 +2,7 @@ #-*- coding: utf-8 -*- # Stéganô - Stéganô is a basic Python Steganography module. -# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org +# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano # diff --git a/stegano/red/red.py b/stegano/red/red.py index d3429f3..c33afc3 100755 --- a/stegano/red/red.py +++ b/stegano/red/red.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # Stéganô - Stéganô is a basic Python Steganography module. -# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org +# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano # diff --git a/stegano/steganalysis/parity.py b/stegano/steganalysis/parity.py index a3ca3c3..ef0bf8c 100644 --- a/stegano/steganalysis/parity.py +++ b/stegano/steganalysis/parity.py @@ -2,7 +2,7 @@ #-*- coding: utf-8 -*- # Stéganô - Stéganô is a basic Python Steganography module. -# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org +# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano # diff --git a/stegano/steganalysis/statistics.py b/stegano/steganalysis/statistics.py index 73a151f..d3e622e 100644 --- a/stegano/steganalysis/statistics.py +++ b/stegano/steganalysis/statistics.py @@ -2,7 +2,7 @@ #-*- coding: utf-8 -*- # Stéganô - Stéganô is a basic Python Steganography module. -# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org +# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano # diff --git a/stegano/tools.py b/stegano/tools.py index 4762f0a..3ed74c0 100755 --- a/stegano/tools.py +++ b/stegano/tools.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # Stéganô - Stéganô is a basic Python Steganography module. -# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org +# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano # diff --git a/tests/test_exifHeader.py b/tests/test_exifHeader.py index d609acf..b33b045 100644 --- a/tests/test_exifHeader.py +++ b/tests/test_exifHeader.py @@ -2,7 +2,7 @@ #-*- coding: utf-8 -*- # Stéganô - Stéganô is a basic Python Steganography module. -# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org +# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano # @@ -20,8 +20,9 @@ # along with this program. If not, see __author__ = "Cedric Bonhomme" -__version__ = "$Revision: 0.1 $" +__version__ = "$Revision: 0.2 $" __date__ = "$Date: 2016/05/17 $" +__revision__ = "$Date: 2017/01/18 $" __license__ = "GPLv3" import os diff --git a/tests/test_lsb.py b/tests/test_lsb.py index 08dfd26..97a965d 100644 --- a/tests/test_lsb.py +++ b/tests/test_lsb.py @@ -2,7 +2,7 @@ #-*- coding: utf-8 -*- # Stéganô - Stéganô is a basic Python Steganography module. -# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org +# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano # diff --git a/tests/test_lsbset.py b/tests/test_lsbset.py index 8d16f2f..ae8aa2b 100644 --- a/tests/test_lsbset.py +++ b/tests/test_lsbset.py @@ -2,7 +2,7 @@ #-*- coding: utf-8 -*- # Stéganô - Stéganô is a basic Python Steganography module. -# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org +# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano # diff --git a/tests/test_red.py b/tests/test_red.py index 8e0e880..9010865 100644 --- a/tests/test_red.py +++ b/tests/test_red.py @@ -2,7 +2,7 @@ #-*- coding: utf-8 -*- # Stéganô - Stéganô is a basic Python Steganography module. -# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org +# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano #