An open API service indexing awesome lists of open source software.

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++

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.