Lines Matching refs:coeffs
70 STACK_OF(BIGNUM) *factors = NULL, *exps = NULL, *coeffs = NULL; in ossl_rsa_fromdata()
129 || !collect_numbers(coeffs = sk_BIGNUM_new_null(), params, in ossl_rsa_fromdata()
134 && sk_BIGNUM_num(coeffs) == 0) { in ossl_rsa_fromdata()
190 coeffs)) { 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()
223 || sk_BIGNUM_num(coeffs) != 0) { in ossl_rsa_fromdata()
227 sk_BIGNUM_num(coeffs)); in ossl_rsa_fromdata()
242 sk_BIGNUM_free(coeffs); in ossl_rsa_fromdata()
252 sk_BIGNUM_pop_free(coeffs, BN_clear_free); in ossl_rsa_fromdata()
266 STACK_OF(BIGNUM_const) *coeffs = 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()
290 coeffs)) in DEFINE_SPECIAL_STACK_OF_CONST()
303 sk_BIGNUM_const_free(coeffs); in DEFINE_SPECIAL_STACK_OF_CONST()