Searched refs:iterations (Results 1 – 14 of 14) sorted by relevance
/openssl/crypto/crmf/ |
H A D | crmf_pbm.c | 140 int64_t iterations; in OSSL_CRMF_pbm_new() local 177 if (!ASN1_INTEGER_get_int64(&iterations, pbmp->iterationCount) in OSSL_CRMF_pbm_new() 178 || iterations < 100 /* min from RFC */ in OSSL_CRMF_pbm_new() 179 || iterations > OSSL_CRMF_PBM_MAX_ITERATION_COUNT) { in OSSL_CRMF_pbm_new() 185 while (--iterations > 0) { in OSSL_CRMF_pbm_new()
|
/openssl/test/ |
H A D | evp_kdf_test.c | 502 unsigned int iterations = 4096; in test_kdf_pbkdf1() local 528 &iterations); in test_kdf_pbkdf1() 552 unsigned int iterations = 4096; in test_kdf_pbkdf1_key_too_long() local 623 unsigned int iterations = 4096; in test_kdf_pbkdf2() local 655 unsigned int iterations = 4096; in test_kdf_pbkdf2_small_output() local 683 unsigned int iterations = 4096; in test_kdf_pbkdf2_large_output() local 712 unsigned int iterations = 4096; in test_kdf_pbkdf2_small_salt() local 737 unsigned int iterations = 1; in test_kdf_pbkdf2_small_iterations() local 763 unsigned int iterations = 4096; in test_kdf_pbkdf2_small_salt_pkcs5() local 800 unsigned int iterations = 1; in test_kdf_pbkdf2_small_iterations_pkcs5() local [all …]
|
H A D | threadstest.c | 119 static void rwwriter_fn(int id, int *iterations) in rwwriter_fn() argument 147 *iterations = count; in rwwriter_fn() 169 static void rwreader_fn(int *iterations) in rwreader_fn() argument 191 *iterations = count; in rwreader_fn() 193 *iterations = count; in rwreader_fn() 199 *iterations = count; in rwreader_fn() 315 static void writer_fn(int id, int *iterations) in writer_fn() argument 343 *iterations = count; in writer_fn() 365 static void reader_fn(int *iterations) in reader_fn() argument 389 *iterations = count; in reader_fn() [all …]
|
H A D | bn_rand_range.h | 15 unsigned int iterations; member
|
H A D | bntest.c | 2340 unsigned int iterations; member 2349 const unsigned int iterations = rand_range_cases[n].iterations; in test_rand_range_single() local 2351 const double expected = iterations / (double)range; in test_rand_range_single() 2363 for (i = 0; i < iterations; i++) { in test_rand_range_single() 2379 iterations); in test_rand_range_single()
|
/openssl/crypto/bn/ |
H A D | bn_prime.c | 347 int ossl_bn_miller_rabin_is_prime(const BIGNUM *w, int iterations, BN_CTX *ctx, in ossl_bn_miller_rabin_is_prime() argument 393 if (iterations == 0) in ossl_bn_miller_rabin_is_prime() 394 iterations = bn_mr_min_checks(BN_num_bits(w)); in ossl_bn_miller_rabin_is_prime() 397 for (i = 0; i < iterations; ++i) { in ossl_bn_miller_rabin_is_prime()
|
/openssl/include/crypto/ |
H A D | bn.h | 104 int ossl_bn_miller_rabin_is_prime(const BIGNUM *w, int iterations, BN_CTX *ctx,
|
/openssl/doc/man1/ |
H A D | openssl-pkcs8.pod.in | 105 When creating new PKCS#8 containers, use a given number of iterations on 254 one million iterations of the password:
|
H A D | openssl-pkcs12.pod.in | 382 to be needed to use MAC iterations counts but they are now used by default.
|
H A D | openssl-enc.pod.in | 133 Use a given number of iterations on the password in deriving the encryption key.
|
/openssl/doc/man3/ |
H A D | SSL_get_error.pod | 84 There is no fixed upper limit for the number of iterations that
|
/openssl/doc/man7/ |
H A D | provider-kdf.pod | 193 Sets the number of iterations in the associated KDF ctx.
|
/openssl/crypto/err/ |
H A D | openssl.txt | 198 BN_R_TOO_MANY_ITERATIONS:113:too many iterations
|
/openssl/ |
H A D | CHANGES.md | 12791 * Let BN_rand_range() abort with an error after 100 iterations 17967 using 50 iterations of the Rabin-Miller test. 17970 iterations of the Rabin-Miller test as required by the appendix 18041 Rabin-Miller iterations. 18124 * Do more iterations of Rabin-Miller probable prime test (specifically,
|
Completed in 73 milliseconds