CipherMate is a web application that provides AES encryption and decryption functionality. Users can encrypt or decrypt text using AES-256 encryption via a simple web interface.
- AES-256 encryption and decryption.
- Clean, dark-themed UI with a video background.
- Form validation with flash messages for user feedback.
-
Clone the repository:
git clone https://github.com/AmishaSharma12002/cipherMate.git
-
Navigate to the project directory:
cd ciphermate
-
Create a virtual environment:
python -m venv venv
-
Activate the virtual environment:
-
On Windows:
venv\Scripts\activate
-
On macOS/Linux:
source venv/bin/activate
-
-
Install the required packages:
pip install -r requirements.txt
-
Run the application:
python app.py
Open your web browser and navigate to
http://127.0.0.1:5000
to access the application.
- Python 3.8 or higher
- Flask
- Cryptography
- pymatrix-rain (for optional matrix effect, not used in the current version)
app.py
: Main Flask application file.templates/
: Directory containing HTML templates.static/
: Directory for static files (CSS, video, etc.).requirements.txt
: List of Python dependencies.README.md
: Project documentation.
This project is licensed under the MIT License - see the LICENSE file for details.