CryptoCPP/README.md
GabrielTofvesson caf800c4cd Implemented primality tests
Implemented bounded random bigint generator
Implemented prime number generator
Implemented RSA
Implemented RSA key generation
Added some convenient functions to BigInteger
2018-03-06 03:48:16 +01:00

58 lines
1.0 KiB
Markdown

# CryptoCPP
My attempt at a small crypto library
## Current projects
* AES
* RSA
* SHA
* XMath
* CryptoTests
### AES
An implementation of AES designed to show how AES encrypts. It uses mathematical functions rather than lookup tables in order to clarify how the encryption actally works and why the operations are as they are.
Status:
* Implemented
Dependencies:
* XMath
### RSA
Small RSA implementation with key generation delegated partially to XMath. The implementation supports message signing, seralization and deserialization.
Status:
* Implemented
Dependencies:
* XMath
### SHA
Secure hashing algorithms. Implementations: SHA1.
Status:
* Not implemented
Dependencies:
None
### XMath
A library with a lot of helper functions and classes for keeping other code clean.
Status:
* BigInteger: Implemented
* Galois Implemented
* Matrix Implemented
* Primes: Implemented
Dependencies:
None
### CryptoTests
A project for testing all the other projects and their implementations.
Status:
N/A
Dependencies:
All