Home | History | Annotate | Download | only in ssl

Lines Matching defs:rsa

11  * apply to all code found in this distribution, be it the RC4, RSA,
387 /* option SSL_OP_EPHEMERAL_RSA sends temporary RSA key
397 * RSA but we have a sign only certificate
1419 RSA *rsa;
1457 rsa=cert->rsa_tmp;
1458 if ((rsa == NULL) && (s->cert->rsa_tmp_cb != NULL))
1460 rsa=s->cert->rsa_tmp_cb(s,
1463 if(rsa == NULL)
1469 RSA_up_ref(rsa);
1470 cert->rsa_tmp=rsa;
1472 if (rsa == NULL)
1478 r[0]=rsa->n;
1479 r[1]=rsa->e;
1778 &(p[2]), &u, pkey->pkey.rsa) <= 0)
1953 RSA *rsa=NULL;
1990 rsa=s->cert->rsa_tmp;
1993 if (rsa == NULL)
2006 (pkey->pkey.rsa == NULL))
2012 rsa=pkey->pkey.rsa;
2033 i=RSA_private_decrypt((int)n,p,p,rsa,RSA_PKCS1_PADDING);
2071 * against Bleichenbacher's attack on PKCS #1 v1.5 RSA padding
2777 pkey->pkey.rsa);