Lines Matching defs:Xp1
97 * Xp1 The passed in starting point to find a probably prime.
98 * p1 The returned probable prime (first odd integer >= Xp1)
103 static int bn_rsa_fips186_4_find_aux_prob_prime(const BIGNUM *Xp1,
111 if (BN_copy(p1, Xp1) == NULL)
115 /* Find the first odd number >= Xp1 that is probably prime */
146 * Xp1, Xp2 Optional passed in values that are normally generated
156 const BIGNUM *Xp, const BIGNUM *Xp1,
172 Xp1i = (Xp1 != NULL) ? (BIGNUM *)Xp1 : BN_CTX_get(ctx);
181 /* (Steps 4.1/5.1): Randomly generate Xp1 if it is not passed in */
182 if (Xp1 == NULL) {
215 if (Xp1 == NULL)