Home | History | Annotate | Download | only in apps

Lines Matching refs:rsa_tmp

2976 	static RSA *rsa_tmp=NULL;
2978 if (!rsa_tmp && ((bn = BN_new()) == NULL))
2980 if (!rsa_tmp && bn)
2987 if(!BN_set_word(bn, RSA_F4) || ((rsa_tmp = RSA_new()) == NULL) ||
2988 !RSA_generate_key_ex(rsa_tmp, keylength, bn, NULL))
2990 if(rsa_tmp) RSA_free(rsa_tmp);
2991 rsa_tmp = NULL;
3000 return(rsa_tmp);