Skip to content

Latest commit

 

History

History
executable file
·
21 lines (14 loc) · 966 Bytes

README.md

File metadata and controls

executable file
·
21 lines (14 loc) · 966 Bytes

Playfair Cipher Website

This project is a website which allows you to enter a key and a message to be encrypted using the Playfair Cipher.

Installation instructions

  1. Open the terminal and navigate to the directory where you wish to clone the repository and entering git clone https://github.com/example-user/PlayfairCipherWebsite.git, and then cd to the cloned repo cd PlayfairCipherWebsite

  2. Create a virtual environment: Mac: python3 -m venv venv followed by source venv/bin/activate Windows: python -m venv venv followed by venv\Scripts\activate

  3. Download dependencies: Mac: pip3 install -r requirements.txt Windows: pip install -r requirements.txt

  4. Run the website by either pressing the run button in your IDE or entering the following into your terminal: Mac: python3 app.py Windows: python app.py

  5. Access the wesbite by copy and pasting the following link into a browser: http://127.0.0.1:5000