Lines Matching refs:N
42 int num = mont->N.top; in bn_mul_mont_fixed_top()
48 if (bn_mul_mont(r->d, a->d, b->d, mont->N.d, mont->n0, num)) { in bn_mul_mont_fixed_top()
95 n = &(mont->N); in bn_from_montgomery_word()
203 if (!BN_mul(t1, t2, &mont->N, ctx)) in bn_from_mont_fixed_top()
210 if (BN_ucmp(ret, &(mont->N)) >= 0) { in bn_from_mont_fixed_top()
211 if (!BN_usub(ret, ret, &(mont->N))) in bn_from_mont_fixed_top()
244 bn_init(&ctx->N); in BN_MONT_CTX_init()
255 BN_clear_free(&mont->N); in BN_MONT_CTX_free()
273 if (!BN_copy(&(mont->N), mod)) in BN_MONT_CTX_set()
276 BN_set_flags(&(mont->N), BN_FLG_CONSTTIME); in BN_MONT_CTX_set()
277 mont->N.neg = 0; in BN_MONT_CTX_set()
372 mont->ri = BN_num_bits(&mont->N); in BN_MONT_CTX_set()
377 if ((BN_mod_inverse(Ri, R, &mont->N, ctx)) == NULL) in BN_MONT_CTX_set()
386 if (!BN_div(&(mont->Ni), NULL, Ri, &mont->N, ctx)) in BN_MONT_CTX_set()
395 if (!BN_mod(&(mont->RR), &(mont->RR), &(mont->N), ctx)) in BN_MONT_CTX_set()
398 for (i = mont->RR.top, ret = mont->N.top; i < ret; i++) in BN_MONT_CTX_set()
416 if (!BN_copy(&(to->N), &(from->N))) in BN_MONT_CTX_copy()
472 if (BN_copy(&ctx->N, modulus) == NULL) in ossl_bn_mont_ctx_set()