Lines Matching defs:nlen
148 * nlen The bit length of the modulus (the key size).
157 const BIGNUM *Xp2, int nlen,
177 bitlen = bn_rsa_fips186_5_aux_prime_min_size(nlen);
202 bn_rsa_fips186_5_aux_prime_max_sum_size_for_prob_primes(nlen))
205 if (!ossl_bn_rsa_fips186_4_derive_prime(p, Xpout, Xp, p1i, p2i, nlen, e,
236 * nlen The desired length of n (the RSA modulus).
246 int nlen, const BIGNUM *e, BN_CTX *ctx,
251 int bits = nlen >> 1;
272 * 1/sqrt(2) * 2^(nlen/2) <= X < 2^(nlen/2).
274 * base = 1/sqrt(2) * 2^(nlen/2)
275 * range = ((2^(nlen/2))) - (1/sqrt(2) * 2^(nlen/2))
307 * In FIPS 186-4 imax was set to 5 * nlen/2.
310 * The number has been updated to 20 * nlen/2 as used in
318 * sqrt(2) * 2^(nlen/2-1) <= Random X <= (2^(nlen/2)) - 1.