Skip to content
mdwrigh2 edited this page Sep 14, 2010 · 4 revisions

The files in this repository are an implantation of the RSA cryptography system created for my MA437 final project.

GCC is required to compile and run these programs. It can be downloaded here: http://gcc.gnu.org/

I also rely heavily on the GNU Multiple Precision library, GMP which can be downloaded here: http://gmplib.org/

Note: gcc comes standard with linux and GMP can be found in the repositories of most major distributions.

To compile and run from command line:

$ gcc -std=c99 Encrypt.c -lgmp -o Encrypt
$ ./Encrypt

Note: all files have been tested and are known to run on Ubuntu

Clone this wiki locally