Home | History | Annotate | Download | only in ssl

Lines Matching defs:rsa

68  * apply to all code found in this distribution, be it the RC4, RSA,
365 /* option SSL_OP_EPHEMERAL_RSA sends temporary RSA key
374 * RSA but we have a sign only certificate */
866 RSA *rsa;
904 rsa=cert->rsa_tmp;
905 if ((rsa == NULL) && (s->cert->rsa_tmp_cb != NULL))
907 rsa=s->cert->rsa_tmp_cb(s,
910 if(rsa == NULL)
916 RSA_up_ref(rsa);
917 cert->rsa_tmp=rsa;
919 if (rsa == NULL)
925 r[0]=rsa->n;
926 r[1]=rsa->e;
1226 &(p[2]), &u, pkey->pkey.rsa) <= 0)