Home | History | Annotate | Download | only in common

Lines Matching defs:y_sqr

206 				      const struct crypto_bignum *y_sqr)
212 * Use the blinding technique to mask y_sqr while determining
216 * v = y_sqr
226 crypto_bignum_mulmod(y_sqr, r, sae->tmp->prime, num) < 0 ||
268 struct crypto_bignum *y_sqr, *x_cand;
292 y_sqr = crypto_ec_point_compute_y_sqr(sae->tmp->ec, x_cand);
293 if (!y_sqr) {
298 res = is_quadratic_residue_blind(sae, prime, bits, qr, qnr, y_sqr);
299 crypto_bignum_deinit(y_sqr, 1);