This is a simple C++ encryption program designed to encrypt text using a custom algorithm. The program does not rely on external libraries or graphical interfaces, making it lightweight and easy to understand. All input and output occur through the terminal.
Whatever is encrypted here can be decrypted in this file emboowaeC-.
- Encrypts plain text using a basic substitution.
- Implements the encryption logic without using any external libraries.
- Designed to be simple and educational.
- A C++ compiler (e.g., g++ now on Windows, clang++ for MacOS)
- A terminal for Unix systems or command prompt for Windows to run the program
- Clone this repository or download the source code file.
- Ensure you have a C++ compiler installed on your system. Common compilers include:
- GCC: gcc.gnu.org
- Clang: clang.llvm.org
- Compile the program using your preferred compiler.
- Either run it in terminal as shown below in usage or in an IDE
- Open a terminal or command prompt.
- Navigate to the directory containing the source code.
- Compile the program using the following command:
g++ programName.cpp
- Run the program using:
./a.out
- Follow the on-screen instructions to encrypt text.
- Input validation and edge cases (e.g., non-alphabetic characters) are quite handled in the logic.
© 2025 Immanuel Mboowa. All Rights Reserved