Lines Matching refs:exps
70 STACK_OF(BIGNUM) *factors = NULL, *exps = NULL, *coeffs = NULL; in ossl_rsa_fromdata()
127 || !collect_numbers(exps = sk_BIGNUM_new_null(), params, in ossl_rsa_fromdata()
133 if (derive_from_pq && sk_BIGNUM_num(exps) == 0 in ossl_rsa_fromdata()
189 rsa->e, factors, exps, in ossl_rsa_fromdata()
199 if (!ossl_rsa_set0_all_params(rsa, factors, exps, coeffs)) { in ossl_rsa_fromdata()
217 && !ossl_rsa_set0_all_params(rsa, factors, exps, coeffs)) in ossl_rsa_fromdata()
222 || sk_BIGNUM_num(exps) != 0 in ossl_rsa_fromdata()
226 sk_BIGNUM_num(factors), sk_BIGNUM_num(exps), in ossl_rsa_fromdata()
241 sk_BIGNUM_free(exps); in ossl_rsa_fromdata()
251 sk_BIGNUM_pop_free(exps, BN_clear_free); in ossl_rsa_fromdata()
265 STACK_OF(BIGNUM_const) *exps = sk_BIGNUM_const_new_null(); in DEFINE_SPECIAL_STACK_OF_CONST()
268 if (rsa == NULL || factors == NULL || exps == NULL || coeffs == NULL) in DEFINE_SPECIAL_STACK_OF_CONST()
272 ossl_rsa_get0_all_params(rsa, factors, exps, coeffs); in DEFINE_SPECIAL_STACK_OF_CONST()
287 ossl_rsa_mp_exp_names, exps) in DEFINE_SPECIAL_STACK_OF_CONST()
302 sk_BIGNUM_const_free(exps); in DEFINE_SPECIAL_STACK_OF_CONST()