A simple C-based program that demonstrates basic encryption and decryption techniques for secure text processing.
This project is intended for beginners to understand fundamental concepts of cryptography and file handling in C.
- 🔒 Encrypt plain text into cipher text
- 🔓 Decrypt cipher text back to original text
- 📄 File-based input and output support
- ⚡ Lightweight and fast execution
- 🎓 Beginner-friendly implementation
- Language: C
- Compiler: GCC / Any standard C compiler
- Platform: Windows / Linux
Encryption-And-Decryption/
│
├── Encryption.c # Main source code
├── Encryption.exe # Compiled executable (Windows)
├── input.txt # Sample input file
├── output.txt # Encrypted/Decrypted output
├── test.txt # Test data
└── README.md # Project documentation
gcc Encryption.c -o Encryption
./Encryption