From 5122f204f6a1970ee296bf0f6d8b41cf2b1d05f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bonhomme?= Date: Fri, 7 Jun 2019 22:56:18 +0200 Subject: [PATCH] Cleaned headers info --- bin/stegano-lsb | 6 +++--- bin/stegano-lsb-set | 6 +++--- bin/stegano-red | 2 +- bin/stegano-steganalysis-parity | 6 +++--- bin/stegano-steganalysis-statistics | 4 ++-- stegano/exifHeader/exifHeader.py | 4 ++-- stegano/lsb/lsb.py | 4 ++-- stegano/lsbset/generators.py | 4 ++-- stegano/lsbset/lsbset.py | 4 ++-- stegano/steganalysis/parity.py | 4 ++-- stegano/steganalysis/statistics.py | 6 +++--- stegano/tools.py | 4 ++-- tests/test_exifHeader.py | 6 +++--- tests/test_generators.py | 4 ++-- tests/test_lsb.py | 6 +++--- tests/test_lsbset.py | 4 ++-- tests/test_red.py | 6 +++--- tests/test_steganalysis.py | 2 +- tests/test_tools.py | 6 +++--- 19 files changed, 44 insertions(+), 44 deletions(-) diff --git a/bin/stegano-lsb b/bin/stegano-lsb index b49fd11..8e95c65 100755 --- a/bin/stegano-lsb +++ b/bin/stegano-lsb @@ -1,7 +1,7 @@ #!/usr/bin/env python -#-*- coding: utf-8 -*- +# -*- coding: utf-8 -*- -# Stegano - Stegano is a basic Python Steganography module. +# Stegano - Stegano is a pure Python steganography module. # Copyright (C) 2010-2019 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano @@ -28,7 +28,7 @@ __license__ = "GPLv3" try: from stegano import lsb except: - print("Install Stegano: sudo pip install Stegano") + print("Install Stegano: pipx install Stegano") from stegano import tools diff --git a/bin/stegano-lsb-set b/bin/stegano-lsb-set index dabb695..faf2c30 100755 --- a/bin/stegano-lsb-set +++ b/bin/stegano-lsb-set @@ -1,8 +1,8 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Stéganô - Stéganô is a basic Python Steganography module. -# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org +# Stegano - Stegano is a pure Python steganography module. +# Copyright (C) 2010-2019 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano # @@ -32,7 +32,7 @@ try: from stegano import lsbset from stegano.lsbset import generators except: - print("Install stegano: sudo pip install Stegano") + print("Install stegano: pipx install Stegano") from stegano import tools diff --git a/bin/stegano-red b/bin/stegano-red index 5798f55..da0651a 100644 --- a/bin/stegano-red +++ b/bin/stegano-red @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Stegano - Stegano is a basic Python Steganography module. +# Stegano - Stegano is a pure Python steganography module. # Copyright (C) 2010-2019 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano diff --git a/bin/stegano-steganalysis-parity b/bin/stegano-steganalysis-parity index ffd2be4..f2f7173 100644 --- a/bin/stegano-steganalysis-parity +++ b/bin/stegano-steganalysis-parity @@ -1,7 +1,7 @@ #!/usr/bin/env python -#-*- coding: utf-8 -*- +# -*- coding: utf-8 -*- -# Stegano - Stegano is a basic Python Steganography module. +# Stegano - Stegano is a pure Python steganography module. # Copyright (C) 2010-2019 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano @@ -27,7 +27,7 @@ __license__ = "GPLv3" try: from stegano.steganalysis import parity except: - print("Install Stegano: sudo pip install Stegano") + print("Install Stegano: pipx install Stegano") from PIL import Image diff --git a/bin/stegano-steganalysis-statistics b/bin/stegano-steganalysis-statistics index a368c03..2acdf20 100644 --- a/bin/stegano-steganalysis-statistics +++ b/bin/stegano-steganalysis-statistics @@ -1,7 +1,7 @@ #!/usr/bin/env python -#-*- coding: utf-8 -*- +# -*- coding: utf-8 -*- -# Stegano - Stegano is a basic Python Steganography module. +# Stegano - Stegano is a pure Python steganography module. # Copyright (C) 2010-2019 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano diff --git a/stegano/exifHeader/exifHeader.py b/stegano/exifHeader/exifHeader.py index e16f5ff..31bfeb9 100644 --- a/stegano/exifHeader/exifHeader.py +++ b/stegano/exifHeader/exifHeader.py @@ -1,8 +1,8 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Stegano - Stegano is a basic Python Steganography module. -# Copyright (C) 2010-2019 Cédric Bonhomme - https://www.cedricbonhomme.org +# Stegano - Stegano is a pure Python steganography module. +# Copyright (C) 2010-2019 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano # diff --git a/stegano/lsb/lsb.py b/stegano/lsb/lsb.py index 9ea1095..cfb2e6a 100755 --- a/stegano/lsb/lsb.py +++ b/stegano/lsb/lsb.py @@ -1,8 +1,8 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Stegano - Stegano is a basic Python Steganography module. -# Copyright (C) 2010-2019 Cédric Bonhomme - https://www.cedricbonhomme.org +# Stegano - Stegano is a pure Python steganography module. +# Copyright (C) 2010-2019 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 0aa9c9d..5a5e557 100644 --- a/stegano/lsbset/generators.py +++ b/stegano/lsbset/generators.py @@ -1,8 +1,8 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Stegano - Stegano is a basic Python Steganography module. -# Copyright (C) 2010-2019 Cédric Bonhomme - https://www.cedricbonhomme.org +# Stegano - Stegano is a pure Python steganography module. +# Copyright (C) 2010-2019 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 5e0c22a..8eadd04 100644 --- a/stegano/lsbset/lsbset.py +++ b/stegano/lsbset/lsbset.py @@ -1,8 +1,8 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Stegano - Stegano is a basic Python Steganography module. -# Copyright (C) 2010-2019 Cédric Bonhomme - https://www.cedricbonhomme.org +# Stegano - Stegano is a pure Python steganography module. +# Copyright (C) 2010-2019 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 3b5607d..0dc904d 100644 --- a/stegano/steganalysis/parity.py +++ b/stegano/steganalysis/parity.py @@ -1,8 +1,8 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Stegano - Stegano is a basic Python Steganography module. -# Copyright (C) 2010-2019 Cédric Bonhomme - https://www.cedricbonhomme.org +# Stegano - Stegano is a pure Python steganography module. +# Copyright (C) 2010-2019 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 d85248b..a23c3e1 100644 --- a/stegano/steganalysis/statistics.py +++ b/stegano/steganalysis/statistics.py @@ -1,8 +1,8 @@ #!/usr/bin/env python -#-*- coding: utf-8 -*- +# -*- coding: utf-8 -*- -# Stegano - Stegano is a basic Python Steganography module. -# Copyright (C) 2010-2019 Cédric Bonhomme - https://www.cedricbonhomme.org +# Stegano - Stegano is a pure Python steganography module. +# Copyright (C) 2010-2019 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 9870000..8fb8076 100755 --- a/stegano/tools.py +++ b/stegano/tools.py @@ -1,8 +1,8 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Stegano - Stéganô is a basic Python Steganography module. -# Copyright (C) 2010-2019 Cédric Bonhomme - https://www.cedricbonhomme.org +# Stegano - Stegano is a pure Python steganography module. +# Copyright (C) 2010-2019 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 cda0e13..3dc6f22 100644 --- a/tests/test_exifHeader.py +++ b/tests/test_exifHeader.py @@ -1,8 +1,8 @@ #!/usr/bin/env python -#-*- coding: utf-8 -*- +# -*- coding: utf-8 -*- -# Stéganô - Stéganô is a basic Python Steganography module. -# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org +# Stegano - Stegano is a pure Python steganography module. +# Copyright (C) 2010-2019 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano # diff --git a/tests/test_generators.py b/tests/test_generators.py index b14845d..5f16727 100644 --- a/tests/test_generators.py +++ b/tests/test_generators.py @@ -1,8 +1,8 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Stéganô - Stéganô is a basic Python Steganography module. -# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org +# Stegano - Stegano is a pure Python steganography module. +# Copyright (C) 2010-2019 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano # diff --git a/tests/test_lsb.py b/tests/test_lsb.py index 9529a20..22a5574 100644 --- a/tests/test_lsb.py +++ b/tests/test_lsb.py @@ -1,8 +1,8 @@ #!/usr/bin/env python -#-*- coding: utf-8 -*- +# -*- coding: utf-8 -*- -# Stéganô - Stéganô is a basic Python Steganography module. -# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org +# Stegano - Stegano is a pure Python steganography module. +# Copyright (C) 2010-2019 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 548cac8..cfe51d8 100644 --- a/tests/test_lsbset.py +++ b/tests/test_lsbset.py @@ -1,7 +1,7 @@ #!/usr/bin/env python -#-*- coding: utf-8 -*- +# -*- coding: utf-8 -*- -# Stéganô - Stéganô is a basic Python Steganography module. +# Stegano - Stegano is a pure Python steganography module. # 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 9010865..a0e51cf 100644 --- a/tests/test_red.py +++ b/tests/test_red.py @@ -1,8 +1,8 @@ #!/usr/bin/env python -#-*- coding: utf-8 -*- +# -*- coding: utf-8 -*- -# Stéganô - Stéganô is a basic Python Steganography module. -# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org +# Stegano - Stegano is a pure Python steganography module. +# Copyright (C) 2010-2019 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano # diff --git a/tests/test_steganalysis.py b/tests/test_steganalysis.py index 8103f5d..75509b5 100644 --- a/tests/test_steganalysis.py +++ b/tests/test_steganalysis.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Stéganô - Stéganô is a basic Python Steganography module. +# Stegano - Stegano is a pure Python steganography module. # Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano diff --git a/tests/test_tools.py b/tests/test_tools.py index 7ef153e..ba6b5b3 100644 --- a/tests/test_tools.py +++ b/tests/test_tools.py @@ -1,8 +1,8 @@ #!/usr/bin/env python -#-*- coding: utf-8 -*- +# -*- coding: utf-8 -*- -# Stéganô - Stéganô is a basic Python Steganography module. -# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org +# Stegano - Stegano is a pure Python steganography module. +# Copyright (C) 2010-2019 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information : https://github.com/cedricbonhomme/Stegano #