A simple web application for encoding and decoding text using AES encryption with custom secret and salt keys.
The easiest way to run this application is using Docker. The image is available on Docker Hub at xqsit94/cypher.
docker run --rm --name cypher -p 8000:8000 xqsit94/cypher
This will start the application on port 8000. You can access it at http://localhost:8000
If you want to build the Docker image yourself:
- Clone the repository
- Build the image:
docker build -t xqsit94/cypher .
- Run the container:
docker run -p 8000:8000 xqsit94/cypher
- Open your browser and navigate to http://localhost:8000
- Choose between Encoder or Decoder mode
- Enter your secret key and salt key (if not provided via environment variables)
- Enter the text you want to encode/decode
- The result will appear automatically in the output field
- Real-time encoding/decoding
- AES encryption
- Custom secret and salt keys
- Docker support
This project is open-source and available under the MIT License.
Made with ❤️ by xqsit94