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,
1219 RSA *rsa=NULL;
1344 if ((rsa=RSA_new()) == NULL)
1357 if (!(rsa->n=BN_bin2bn(p,i,rsa->n)))
1372 if (!(rsa->e=BN_bin2bn(p,i,rsa->e)))
1388 s->session->sess_cert->peer_rsa_tmp=rsa;
1389 rsa=NULL;
1554 * key exchange message. We do support RSA and ECDSA.
1618 pkey->pkey.rsa);
1700 if (rsa != NULL)
1701 RSA_free(rsa);
2080 RSA *rsa;
2084 rsa=s->session->sess_cert->peer_rsa_tmp;
2090 (pkey->pkey.rsa == NULL))
2095 rsa=pkey->pkey.rsa;
2111 tmp_buf,p,rsa,RSA_PKCS1_PADDING);
2760 &(p[2]), &u, pkey->pkey.rsa) <= 0 )
2926 RSA *rsa;
2947 rsa=s->session->sess_cert->peer_rsa_tmp;
2991 !(has_bits(i,EVP_PK_RSA|EVP_PKT_ENC) || (rsa != NULL)))
3023 if (rsa == NULL
3024 || RSA_size(rsa)*8 > SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher))