The Extended Caesar Cipher is a modified version of the classic Caesar cipher. Unlike the traditional cipher, which uses a single shift for all letters, this extended version allows you to specify different shifts for different parts of the text. This adds an extra layer of complexity and security, making it more versatile than the original Caesar cipher.
Contributions are always welcome!
See contributing.md
for ways to get started.
Please adhere to this project's code of conduct
.
The Extended Caesar Cipher project is containerized using Docker to simplify local development and testing. Follow the instructions below to build and run the project.
- Ensure Docker and Docker Compose are installed on your machine.
-
Clone the repository:
git clone https://github.com/Cysiuu/ecc.git cd ecc
-
Start the services using Docker Compose:
docker-compose up --build
-
Access the application:
- Frontend: http://localhost:5173
- Backend: http://localhost:8080
To stop the services, press Ctrl+C
in the terminal or run:
docker-compose down