NevemTeve Creative Commons License 2003.01.22 0 0 4
Nem valami bonyolult, kb ennyi


#include <openssl/err.h>
#include <openssl/rand.h>
#include <openssl/rsa.h>
#include <openssl/rsa.h>
-
#define KEYSIZE 1024

RSA *rsa;

rsa= RSA_generate_key (KEYSIZE, 3, NULL, NULL);
if (rsa==NULL) {
e= ERR_get_error ();
SSL_load_error_strings ();
ERR_error_string (e, errbuff);
fprintf (stderr, "RSA_generate_key returned %lx\n%s\n",
e, errbuff);
exit (12);
}

Előzmény: superuser (3)