Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rizerkrof/steganography-image
Simple python program to encode/decode message on image file.
https://github.com/rizerkrof/steganography-image
python python3 steganography unittest
Last synced: 13 days ago
JSON representation
Simple python program to encode/decode message on image file.
- Host: GitHub
- URL: https://github.com/rizerkrof/steganography-image
- Owner: rizerkrof
- Created: 2023-01-26T13:11:36.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-28T19:31:28.000Z (about 2 years ago)
- Last Synced: 2024-11-29T09:52:39.133Z (2 months ago)
- Topics: python, python3, steganography, unittest
- Language: Python
- Homepage:
- Size: 76.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
README
#+title: Steganography on images
* Table of Contents :TOC_3:noexport:
- [[#description][Description]]
- [[#maintainer][Maintainer]]
- [[#prerequisites][Prerequisites]]
- [[#installation][Installation]]
- [[#usage][Usage]]
- [[#encode][Encode]]
- [[#decode][Decode]]
- [[#run-tests][Run tests]]* Description
This is simple program to encode/decode a message into/from an image file. The program will simply change the last bit of each R, G and B values (converted to byte) by each bit of the text message byte sequence.** Maintainer
+ [[https://github.com/rizerkrof][@rizerkrof]]* Prerequisites
+ Python >= 3* Installation
#+begin_src sh
git clone https://github.com/rizerkrof/steganography-image.git
#+end_src* Usage
(Setup your self at the clone root directory)
** Encode
#+begin_src sh
python3 steganography.py -e
#+end_src
** Decode
#+begin_src sh
python3 steganography.py -d
#+end_src* Run tests
(Setup your self at the clone root directory)
#+begin_src sh
python3 -m unittest discover --top-level-directory=. --start-directory=./steganography/tests/
#+end_src