The ROT13 Passcode Transformer is a C++ program that reads a ROT13 encoded passcode, transforms it using the ROT13 cipher, and outputs the result. ROT13 is a simple letter substitution cipher that replaces a letter with the 13th letter after it in the alphabet, effectively encoding and decoding messages.
KeesOG
- π οΈ Reads passcode input from the user.
- π Applies the ROT13 transformation.
- π‘ Handles uppercase, lowercase, and digit characters appropriately.
- π¬ Outputs the transformed passcode.
To use the ROT13 Passcode Transformer, follow these steps:
- Compile the program using a C++ compiler.
- Run the executable.
- Enter your ROT13 encoded passcode when prompted.
- View the transformed passcode output.
The program follows these main steps:
- π Reads input from the user.
- π Iterates over each character in the input.
- π Transforms the character using the ROT13 cipher.
- π‘ Handles special cases for uppercase letters and digits.
- π¬ Outputs the transformed passcode.
The program uses standard C++ libraries, so no external dependencies are required.
Contributions are welcome! Feel free to open issues or submit pull requests to improve the code or add new features.
This project is licensed under the MIT License. See the LICENSE file for details.