Lines Matching refs:exps
479 int RSA_set0_multi_prime_params(RSA *r, BIGNUM *primes[], BIGNUM *exps[],
486 if (primes == NULL || exps == NULL || coeffs == NULL || pnum == 0)
500 if (primes[i] != NULL && exps[i] != NULL && coeffs[i] != NULL) {
505 pinfo->d = exps[i];
609 int RSA_get0_multi_prime_crt_params(const RSA *r, const BIGNUM *exps[],
618 if (exps != NULL || coeffs != NULL) {
625 if (exps != NULL)
626 exps[i] = pinfo->d;
744 const STACK_OF(BIGNUM) *exps,
752 if (primes == NULL || exps == NULL || coeffs == NULL)
757 || pnum != sk_BIGNUM_num(exps)
763 || !RSA_set0_crt_params(r, sk_BIGNUM_value(exps, 0),
764 sk_BIGNUM_value(exps, 1),
782 BIGNUM *exp = sk_BIGNUM_value(exps, i);
842 STACK_OF(BIGNUM_const) *exps,
859 sk_BIGNUM_const_push(exps, RSA_get0_dmp1(r));
860 sk_BIGNUM_const_push(exps, RSA_get0_dmq1(r));
868 sk_BIGNUM_const_push(exps, pinfo->d);