Home
last modified time | relevance | path

Searched refs:mbedtls_mpi_fill_random (Results 1 – 8 of 8) sorted by relevance

/openthread-latest/third_party/mbedtls/repo/include/mbedtls/
Dbignum.h930 int mbedtls_mpi_fill_random(mbedtls_mpi *X, size_t size,
/openthread-latest/third_party/mbedtls/repo/library/
Drsa.c1312 MBEDTLS_MPI_CHK(mbedtls_mpi_fill_random(&ctx->Vf, ctx->len - 1, f_rng, p_rng)); in rsa_prepare_blinding()
1315 MBEDTLS_MPI_CHK(mbedtls_mpi_fill_random(&R, ctx->len - 1, f_rng, p_rng)); in rsa_prepare_blinding()
1504 MBEDTLS_MPI_CHK(mbedtls_mpi_fill_random(&R, RSA_EXPONENT_BLINDING, in mbedtls_rsa_private()
1513 MBEDTLS_MPI_CHK(mbedtls_mpi_fill_random(&R, RSA_EXPONENT_BLINDING, in mbedtls_rsa_private()
1522 MBEDTLS_MPI_CHK(mbedtls_mpi_fill_random(&R, RSA_EXPONENT_BLINDING, in mbedtls_rsa_private()
Ddhm.c194 MBEDTLS_MPI_CHK(mbedtls_mpi_fill_random(&ctx->X, x_size, f_rng, p_rng)); in dhm_make_common()
Dbignum.c1835 int mbedtls_mpi_fill_random(mbedtls_mpi *X, size_t size, in mbedtls_mpi_fill_random() function
2059 MBEDTLS_MPI_CHK(mbedtls_mpi_fill_random(&A, X->n * ciL, f_rng, p_rng)); in mpi_miller_rabin()
2203 MBEDTLS_MPI_CHK(mbedtls_mpi_fill_random(X, n * ciL, f_rng, p_rng)); in mbedtls_mpi_gen_prime()
Decjpake.c634 MBEDTLS_MPI_CHK(mbedtls_mpi_fill_random(&b, 16, f_rng, p_rng)); in ecjpake_mul_secret()
Decp.c3100 MBEDTLS_MPI_CHK(mbedtls_mpi_fill_random(d, n_random_bytes, in mbedtls_ecp_gen_privkey_mx()
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_bignum.function1248 ret = mbedtls_mpi_fill_random(&X, wanted_bytes,
1253 /* mbedtls_mpi_fill_random is documented to use bytes from the RNG
/openthread-latest/third_party/mbedtls/repo/
DChangeLog2097 * A failure of the random generator was ignored in mbedtls_mpi_fill_random(),
2879 * Reduce the stack consumption of mbedtls_mpi_fill_random() which could
3839 * Add MBEDTLS_MPI_CHK to check for error value of mbedtls_mpi_fill_random.