Lines Matching defs:n_bn
82 BIGNUM *n_bn = NULL;
97 n_bn = BN_bin2bn(modulus, size, NULL);
98 if (!n_bn) {
99 pa_log("n_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
120 n_bn = NULL;
136 if (n_bn)
137 BN_free(n_bn);