Home
last modified time | relevance | path

Searched refs:MBEDTLS_ERR_MPI_NOT_ACCEPTABLE (Results 1 – 12 of 12) sorted by relevance

/third_party/mbedtls/tests/suites/
Dtest_suite_bignum_random.data23 mpi_core_random_basic:0x0fffffff:"10000001":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
35 mpi_core_random_basic:0x1fffffff:"20000001":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
47 mpi_core_random_basic:0x3fffffff:"40000001":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
59 mpi_core_random_basic:0x7fffffff:"80000001":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
Dtest_suite_bignum.misc.data1488 mpi_inv_mod:"2":"4":"0":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
1494 mpi_inv_mod:"":"11":"":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
1497 mpi_inv_mod:"00":"11":"":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
1504 mpi_is_prime:"0":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
1508 mpi_is_prime:"1":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
1520 mpi_is_prime:"4":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
1528 mpi_is_prime:"1b":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
1536 …e:"b91ba63180c726fbd57786f27f1ede97a3b40c59a7fcfb5898f076e9af57028d":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
1540 …e:"b3a119602ee213cde28581ecd892e0f592a338655dce4ca88054b3d124d0e561":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
1548 …3c9c6f0ead752500a32c56c62082912b66132b2a6aa42ada923e1ad22ceb7ba00c1":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
Dtest_suite_rsa.data444 mbedtls_rsa_deduce_private_exponent:"3":"5":"3":"3":1:MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
450 …62D77743F89EACF3B1723BDB25CE2F333FA63CACF0E67DF1A431893BB9B352FCB":1:MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
Dtest_suite_bignum.function1125 TEST_ASSERT(res == MBEDTLS_ERR_MPI_NOT_ACCEPTABLE);
/third_party/mbedtls/library/
Dbignum.c2134 ret = MBEDTLS_ERR_MPI_NOT_ACCEPTABLE; in mbedtls_mpi_inv_mod()
2246 return MBEDTLS_ERR_MPI_NOT_ACCEPTABLE; in mpi_check_small_factors()
2257 return MBEDTLS_ERR_MPI_NOT_ACCEPTABLE; in mpi_check_small_factors()
2307 ret = MBEDTLS_ERR_MPI_NOT_ACCEPTABLE; in mpi_miller_rabin()
2344 ret = MBEDTLS_ERR_MPI_NOT_ACCEPTABLE; in mpi_miller_rabin()
2375 return MBEDTLS_ERR_MPI_NOT_ACCEPTABLE; in mbedtls_mpi_is_prime_ext()
2411 int ret = MBEDTLS_ERR_MPI_NOT_ACCEPTABLE; in mbedtls_mpi_gen_prime()
2462 if (ret != MBEDTLS_ERR_MPI_NOT_ACCEPTABLE) { in mbedtls_mpi_gen_prime()
2499 if (ret != MBEDTLS_ERR_MPI_NOT_ACCEPTABLE) { in mbedtls_mpi_gen_prime()
Derror.c605 case -(MBEDTLS_ERR_MPI_NOT_ACCEPTABLE): in mbedtls_low_level_strerr()
Ddhm.c210 if (ret == MBEDTLS_ERR_MPI_NOT_ACCEPTABLE) { in dhm_make_common()
Dbignum_core.c620 ret = MBEDTLS_ERR_MPI_NOT_ACCEPTABLE; in mbedtls_mpi_core_random()
Decp.c1725 if (ret == MBEDTLS_ERR_MPI_NOT_ACCEPTABLE) { in ecp_randomize_jac()
2485 if (ret == MBEDTLS_ERR_MPI_NOT_ACCEPTABLE) { in ecp_randomize_mxz()
3131 case MBEDTLS_ERR_MPI_NOT_ACCEPTABLE: in mbedtls_ecp_gen_privkey_sw()
Drsa.c814 if (ret != 0 && ret != MBEDTLS_ERR_MPI_NOT_ACCEPTABLE) { in rsa_prepare_blinding()
818 } while (ret == MBEDTLS_ERR_MPI_NOT_ACCEPTABLE); in rsa_prepare_blinding()
Dpsa_crypto.c255 case MBEDTLS_ERR_MPI_NOT_ACCEPTABLE: in mbedtls_to_psa_error()
/third_party/mbedtls/include/mbedtls/
Dbignum.h48 #define MBEDTLS_ERR_MPI_NOT_ACCEPTABLE -0x000E macro