Searched refs:rounds (Results 1 – 12 of 12) sorted by relevance
/mbedtls-development/tests/suites/ |
A D | test_suite_mps.data | 7 MPS Reader: Single step, multiple rounds, pausing disabled 10 MPS Reader: Single step, multiple rounds, pausing enabled but unused 19 MPS Reader: Multiple steps, multiple rounds, pausing disabled 22 MPS Reader: Multiple steps, multiple rounds, pausing enabled but unused
|
A D | test_suite_random.function | 51 /* The two rounds must generate different random data. */ 91 /* The two rounds must generate different random data. */ 118 /* The two rounds must generate different random data. */ 142 /* The two rounds must generate different random data. */
|
A D | test_suite_mpi.function | 1113 int chunk_len, int rounds ) 1125 res = mbedtls_mpi_is_prime_ext( &X, rounds - 1, 1134 res = mbedtls_mpi_is_prime_ext( &X, rounds,
|
A D | test_suite_mps.function | 73 /* This test exercises multiple rounds of the basic use of the MPS reader:
|
/mbedtls-development/library/ |
A D | hmac_drbg.c | 67 unsigned char rounds = ( additional != NULL && add_len != 0 ) ? 2 : 1; in mbedtls_hmac_drbg_update() local 72 for( sep[0] = 0; sep[0] < rounds; sep[0]++ ) in mbedtls_hmac_drbg_update() 83 if( rounds == 2 ) in mbedtls_hmac_drbg_update()
|
A D | bignum.c | 2937 static int mpi_miller_rabin( const mbedtls_mpi *X, size_t rounds, in mpi_miller_rabin() argument 2961 for( i = 0; i < rounds; i++ ) in mpi_miller_rabin() 3030 int mbedtls_mpi_is_prime_ext( const mbedtls_mpi *X, int rounds, in mbedtls_mpi_is_prime_ext() argument 3058 return( mpi_miller_rabin( &XX, rounds, f_rng, p_rng ) ); in mbedtls_mpi_is_prime_ext() 3081 int rounds; in mbedtls_mpi_gen_prime() local 3100 rounds = ( ( nbits >= 1300 ) ? 2 : ( nbits >= 850 ) ? 3 : in mbedtls_mpi_gen_prime() 3110 rounds = ( ( nbits >= 1450 ) ? 4 : ( nbits >= 1150 ) ? 5 : in mbedtls_mpi_gen_prime() 3128 ret = mbedtls_mpi_is_prime_ext( X, rounds, f_rng, p_rng ); in mbedtls_mpi_gen_prime() 3161 ( ret = mpi_miller_rabin( X, rounds, f_rng, p_rng ) ) in mbedtls_mpi_gen_prime() 3163 ( ret = mpi_miller_rabin( &Y, rounds, f_rng, p_rng ) ) in mbedtls_mpi_gen_prime()
|
/mbedtls-development/include/mbedtls/ |
A D | bignum.h | 977 int mbedtls_mpi_is_prime_ext( const mbedtls_mpi *X, int rounds,
|
/mbedtls-development/ |
A D | CONTRIBUTING.md | 20 …erged and published. Contributions may need some modifications, so a few rounds of review and fixi…
|
A D | ChangeLog | 740 * Remove the zeroization of a pointer variable in AES rounds. It was valid 1593 * Fix mbedtls_mpi_is_prime() to use more rounds of probabilistic testing. The 1594 previous settings for the number of rounds made it practical for an 1599 For example, the number of rounds was enough to securely generate RSA key 1644 Miller-Rabin rounds.
|
/mbedtls-development/docs/architecture/ |
A D | tls13-experimental.md | 232 work to reduce review rounds and the number of comments in each round. They
|
/mbedtls-development/docs/ |
A D | 3.0-migration-guide.md | 144 number of Miller-Rabin rounds.
|
/mbedtls-development/docs/proposed/ |
A D | psa-driver-interface.md | 422 3. If the second round does not collect enough entropy, the core makes more similar rounds, until t…
|
Completed in 23 milliseconds