Lines Matching defs:val
111 const struct crypto_bignum *val)
124 * Use a blinding technique to mask val while determining whether it is
128 * v = val
138 crypto_bignum_mulmod(val, r, prime, num) < 0 ||
182 static int dragonfly_get_rand_2_to_r_1(struct crypto_bignum *val,
185 return crypto_bignum_rand(val, order) == 0 &&
186 !crypto_bignum_is_zero(val) &&
187 !crypto_bignum_is_one(val);
218 /* res = sqrt(val) */
219 int dragonfly_sqrt(struct crypto_ec *ec, const struct crypto_bignum *val,
242 /* res = sqrt(val) */
243 crypto_bignum_exptmod(val, tmp, prime, res) < 0)