To implement the RSA algorithm and in order to manage large numbers, we have to install GMP library following the instructions in this website. The implementation of RSA encryption was done in C language.
gcc rsa.c -o rsa -lgmp
./rsa
To implement the RSA algorithm and in order to manage large numbers, we have to install GMP library following the instructions in this website. The implementation of RSA encryption was done in C language.
gcc rsa.c -o rsa -lgmp
./rsa