https://github.com/saiteja-talluri/cryptosuite-application
A small cryptosuite application written in C++
https://github.com/saiteja-talluri/cryptosuite-application
cryptography miller-rabin rsa-encryption
Last synced: 2 months ago
JSON representation
A small cryptosuite application written in C++
- Host: GitHub
- URL: https://github.com/saiteja-talluri/cryptosuite-application
- Owner: saiteja-talluri
- License: mit
- Created: 2018-12-06T06:19:16.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-06T06:45:35.000Z (over 7 years ago)
- Last Synced: 2025-03-12T14:49:54.480Z (over 1 year ago)
- Topics: cryptography, miller-rabin, rsa-encryption
- Language: C++
- Size: 8.79 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CryptoSuite
> This project implements a small cryptosuite application to demonstrate modular operations (addition,multiplication and exponentiation),GCD, Inverse Modulo, Discrete logarithm (using either Pohlig-Hellman, index calculus, Pollard-rho or the basic Baby Step Giant Step algorithm), RSA cryptosystem and Field Operations in Prime Fields and Binary Fields using the biginteger class in C++.
It was made as the final project for CS 101 - **Computer Programming and Utilisation** course in Autumn 2016 at Indian Institute of Technology (IIT) Bombay, India.
## Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
1. Install the package by cloning this repo using the following command.
```
git clone https://github.com/saiteja-talluri/cryptosuite-application.git
```
2. Navigate to the folder containing the main.cpp file. Run the following command to compile the file.
```
g++ main.cpp -o main
```
3. Now run the executable main generated in the src folder using the following command.
```
./main
```
Now you can use all the functionalities provided by our cryptosuite application.
## Authors
* **Saiteja Talluri** - [saiteja-talluri](https://github.com/saiteja-talluri)
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
## Citations
The ```bigint.h``` used in this project is available open source and no copyright has been violated.