Home | History | Annotate | Download | only in apps

Lines Matching full:rsa_tmp

2962 	static RSA *rsa_tmp=NULL;
2964 if (!rsa_tmp && ((bn = BN_new()) == NULL))
2966 if (!rsa_tmp && bn)
2973 if(!BN_set_word(bn, RSA_F4) || ((rsa_tmp = RSA_new()) == NULL) ||
2974 !RSA_generate_key_ex(rsa_tmp, keylength, bn, NULL))
2976 if(rsa_tmp) RSA_free(rsa_tmp);
2977 rsa_tmp = NULL;
2986 return(rsa_tmp);