A Caesar cipher utility that encrypts all ASCII characters.
- Encrypts and decrypts text using the Caesar cipher
- Works with all ASCII characters
- Option to ignore specific characters during encryption/decryption
- Simple command-line interface
- Cargo
- Rust
- Clone the repository
- Navigate to the project directory
- Compile the project using 'cargo build'
Run './asciicaesar [options]'
For detailed information on available options, use './asciicaesar -h'
Encrypt text while ignoring spaces and punctuation:
./asciicaesar -s 3 -c ' ,.!?'or using pipes
cat input_file | ./asciicaesar -s 3 -c ' ,.!?' > output_fileContributions are welcome. Please fork the repository, create a feature branch, commit your changes, and open a Pull Request.
This project is licensed under MIT. See the LICENSE file for details.