https://github.com/cm0use/rot13
Encrypt/Decrypt any Latin alphabet text entry (aA-Zz)
https://github.com/cm0use/rot13
cpp cpptools rot13 rot13-cipher rot13-decoder
Last synced: 8 months ago
JSON representation
Encrypt/Decrypt any Latin alphabet text entry (aA-Zz)
- Host: GitHub
- URL: https://github.com/cm0use/rot13
- Owner: CM0use
- License: gpl-3.0
- Created: 2022-04-16T15:58:40.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-13T19:54:48.000Z (almost 2 years ago)
- Last Synced: 2025-01-09T21:31:58.826Z (9 months ago)
- Topics: cpp, cpptools, rot13, rot13-cipher, rot13-decoder
- Language: C++
- Homepage:
- Size: 40 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
ROT13
Simple letter substitution cipher that replaces a letter with the 13th letter after it in the alphabet.
Features •
Requirements •
Compile & Run •
Contributing •
License
## Features
* Encrypt/Decrypt any Latin alphabet text entry (aA-Zz)
* Easy to modify.
* Cross-Platform
- Windows, macOS and Linux.## Requirements
* g++
* git (optional)## Compile & Run
To **clone** and **compile** this tool, you will need to have **git** and **g++** installed on your computer.
From your command line:```bash
git clone https://github.com/CM0use/ROT13.git
cd ROT13
g++ -O2 -std=c++2a src/main.cpp src/rot13.cpp -o rot13
```Run on **macOS & Linux**:
```bash
./rot13 Hello There
```Run on **Windows**:
```cmd
rot13.exe Hello There
```## Contributing
**Any contribution you make will be greatly appreciated.**
If you have any ideas/suggestions to improve the repository, make a fork of the repository and create a pull request.
You can also open the issue tracker to report any improvements or bugs.## License
**Distributed under the GNU General Public License v3.0**
See accompanying file LICENSE
or copy at GNU General Public License