Caeser Cipher (enc0), Vigenere Cipher (enc1), DES (enc2), RSA (enc3), MD 5 checksum (enc4)
-
cd into CSDS-444-Final/
-
Create a virtualenv (and activate it):
python3 -m venv venv
. venv/bin/activate
- Install the flask app:
pip install -e .
- Run the server:
export FLASK_APP=comp_sec
export FLASK_ENV=development
flask run
- Go to http://127.0.0.1:5000/ in browser
-
cd into CSDS-444-Final/
-
Create a virtualenv (and activate it):
python -m venv venv
venv\Scripts\activate.bat
- Install the flask app:
pip install -e .
- Run the server (windows):
set FLASK_APP=comp_sec
set FLASK_ENV=development
flask run
- Go to http://127.0.0.1:5000/ in browser