Home | History | Annotate | Download | only in apps

Lines Matching defs:rsa

11  * apply to all code found in this distribution, be it the RC4, RSA,
187 #include <openssl/rsa.h>
202 static RSA MS_CALLBACK *tmp_rsa_cb(SSL *s, int is_export, int keylength);
451 BIO_printf(bio_err," -no_tmp_rsa - Do not generate a tmp RSA key\n");
1599 RSA *rsa;
1601 BIO_printf(bio_s_out,"Generating temp (512 bit) RSA key...");
1604 rsa=RSA_generate_key(512,RSA_F4,NULL);
1606 if (!SSL_CTX_set_tmp_rsa(ctx,rsa))
1614 if (!SSL_CTX_set_tmp_rsa(ctx2,rsa))
1621 RSA_free(rsa);
2639 static RSA MS_CALLBACK *tmp_rsa_cb(SSL *s, int is_export, int keylength)
2642 static RSA *rsa_tmp=NULL;
2645 BIO_printf(bio_err,"Allocation error in generating RSA key\n");
2650 BIO_printf(bio_err,"Generating temp (%d bit) RSA key...",keylength);