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

https://github.com/kar-dim/icsd-pkcrypto_algorithms

Implementation of various Public Key Algorithms (RSA, Rabin, ElGamal) by using GNU MP library. Part of my university coursework (2013-2019, Information and Communications Systems Engineering, University of the Aegean).
https://github.com/kar-dim/icsd-pkcrypto_algorithms

cpp cpp20 gmp public-key-cryptography

Last synced: 6 months ago
JSON representation

Implementation of various Public Key Algorithms (RSA, Rabin, ElGamal) by using GNU MP library. Part of my university coursework (2013-2019, Information and Communications Systems Engineering, University of the Aegean).

Awesome Lists containing this project

README

          

# ICSD PKCrypto Algorithms
Implementation of various Public Key Algorithms (RSA, Rabin, ElGamal) by using GNU MP library. Part of my university coursework (2013-2019, Information and Communications Systems Engineering, University of the Aegean).

GNU MP can be installed via vcpkg:

```git clone https://github.com/Microsoft/vcpkg.git```

```.\vcpkg\bootstrap-vcpkg.bat```

Install GNU MP:

```vcpkg install gmp```

Integration vcpkg packages with MSBuild projects:

```vcpkg integrate install```