Lines Matching defs:e_bn
83 BIGNUM *e_bn = NULL;
105 e_bn = BN_bin2bn(exponent, size, NULL);
106 if (!e_bn) {
107 pa_log("e_bn = BN_bin2bn() failed.");
111 r = RSA_set0_key(rsa, n_bn, e_bn, NULL);
117 /* The memory allocated for n_bn and e_bn is now managed by the RSA object.
118 * Let's set n_bn and e_bn to NULL to avoid freeing the memory in the error
121 e_bn = NULL;
133 if (e_bn)
134 BN_free(e_bn);