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).
- Host: GitHub
- URL: https://github.com/kar-dim/icsd-pkcrypto_algorithms
- Owner: kar-dim
- Created: 2023-04-01T17:45:56.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-01-06T12:47:39.000Z (9 months ago)
- Last Synced: 2025-04-09T22:06:30.860Z (6 months ago)
- Topics: cpp, cpp20, gmp, public-key-cryptography
- Language: C++
- Homepage:
- Size: 250 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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```