Encrypted Message Board implemented using Hill Cipher Encryption algorithm which uses 4x4 key matrix.
- Does not support numbers, special characters.
- Key matrix should be invertible modulo 26.
- python
- flask
- flask-socketio
- jquery
- bootstrap
1. pip3 install flask flask-socketio
2. python3 main.py
An example for 4x4 key matrix is:
8 6 9 5
6 9 5 10
5 8 4 9
10 6 11 4
Required condition: Key matrix should be invertible modulo 26.