Upload Code
loading-left
loading loading loading
loading-right

Loading

Profile
No self-introduction
codes (2)
algorithm origin RSA with library GMP on visual st
no vote
this  is my code, i used library gmp combine with  c language  when code. I compiled on Visual studio 2013.  my program is calculate values for public key n, e, secret key d and after store in file text.  the Program have 3 function is calculate, last session of work, generate Key and go  to last session. when user select exit function then program will exit.
victimlove_pham
2016-08-23
1
1
RSA encrypt and decrypt using library GMP
no vote
this is my code of program crypt for the RSA. in my code, i using GMP for big number  #include <stdlib.h> #include <conio.h> #include <stdint.h> #include <gmp.h> #include <string.h> #pragma warning(disable:4996) #pragma warning(disable:4013) #pragma warning(disable:4018) mpz_t n; mpz_t e; mpz_t fi; mpz_t d;
victimlove_pham
2016-08-23
0
1
No more~