vsouza /
awesome-ios
A curated list of awesome iOS ecosystem, including Objective-C and Swift Projects
Loading repository data…
Sepehr-khosravi / repository
A C++ project for encrypting text using multiple layered algorithms (Caesar, XOR, Vigenère) with randomized steps.
This project is a C++ implementation of a multi-step encryption system that applies several encryption algorithms in sequence to ensure high data confidentiality. Each step is randomly selected and parameterized, making the final ciphertext highly unpredictable.
EncryptorProject/ ├── include/ │ ├── algorithms/ │ │ ├── caesar.hpp │ │ ├── xor.hpp │ │ └── vigenere.hpp │ ├── encryptor.hpp │ └── utils.hpp ├── src/ │ ├── algorithms/ │ │ ├── caesar.cpp │ │ ├── xor.cpp │ │ └── vigenere.cpp │ ├── encryptor.cpp │ ├── utils.cpp │ └── main.cpp ├── CMakeLists.txt ├── build/ (generated after build) └── README.md
# Navigate to the project root
cd EncryptorProject
# Create a build directory
mkdir build && cd build
# Generate Makefiles
cmake ..
# Compile
cmake --build .
# Run
./encrypting.exe
💡 Example
vbnet
Copy
Edit
Enter text to encrypt : Sepehr
Encrypted: `RGR_A
Decrypting using xor with key: 5 or string key:
Decrypting using caesar with key: 2 or string key:
Decrypted : Sepehr
📌 Notes
The encryption steps and keys are randomly generated on each run.
The decryption process requires access to the exact sequence of encryption steps.
This project is for educational purposes and not recommended for real-world security use.
🧠 Future Improvements
Add support for more algorithms (e.g., AES, RSA)
Encrypt the encryption steps themselves
GUI or web interface
Save/load encryption sessions to/from file
🧑💻 Author
Made with 💻 by [Your Name]
Feel free to contribute or open issues!
📜 License
This project is open-source and available under the MIT License.
yaml
Copy
Edit
Selected from shared topics, language and repository description—not editorial ratings.
vsouza /
A curated list of awesome iOS ecosystem, including Objective-C and Swift Projects
cookiecutter /
A cross-platform command-line utility that creates projects from cookiecutters (project templates), e.g. Python package projects, C projects.
oz123 /
A curated list of awesome C frameworks, libraries, resources and other shiny things. Inspired by all the other awesome-... projects out there.
microsoft /
The C++ REST SDK is a Microsoft project for cloud-based client-server communication in native code using a modern asynchronous C++ API design. This project aims to help C++ developers connect to and interact with services.
aalhour /
:books: :chart_with_upwards_trend: Plug-and-play class-library project of standard Data Structures and Algorithms in C#
NJHu /
iOS project comprising a collection of demos for iOS Apps, developed in Objective-C;iOSProject iOSdemo iOSdemos ocdemo ocdemos