Skip to content

Latest commit

 

History

History
35 lines (31 loc) · 1018 Bytes

README.md

File metadata and controls

35 lines (31 loc) · 1018 Bytes

LSB Steganography

Using LSB method to encrypt and decrypt text on image with format .png or .jpg

Installation

Make sure python 3xx is installed on your system, me only provide configuration for windows user (for linux and mac should be similar):

First, move into dir where do you want to put the cloning git, for example E:

$ git clone [git-repo-url]ldpc-img.git
$ cd ldpc-img

set virtual environment for django project on E:/lsb/, so it won't bother your machine. then activate it like this.

$ python -m venv myenv
$ myenv/Scripts/activate.bat

after its activated, download django into your virtual environment.

$ (myvenv) ~$ pip install django

or

$ (myvenv) ~$ python -m pip install django

install dependencies - use pip to install all dependecies (make sure pip is installed on your virtual environment)

$ (myvenv) ~$ pip install -r requirements.txt 

Runserver - find file manage.py then run it like so

$ (myvenv) ~$ python manage.py runserver