My (unofficial) solutions to the matasano cryptopals challenges (written in C).
As SSL implementation I have chosen PolarSSL. It is an uprising library which I wanted to learn more about.
These solutions are written in plain C. I really wanted to improve my C skills (because I have a C++ background). So these challenges were perfect to do this.
You need to compile the PolarSSL library, by running make
in the "polarssl"
directory.
After that, each challenge can be compiled by the command make main
in each challenge
directory, and to run it, execute ./main
.
This code is available under the MIT License.