Home
last modified time | relevance | path

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

/mbedtls-3.7.0/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.data1502 mpi_inv_mod:"2":"4":"0":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
1508 mpi_inv_mod:"":"11":"":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
1511 mpi_inv_mod:"00":"11":"":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
1518 mpi_is_prime:"0":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
1522 mpi_is_prime:"1":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
1534 mpi_is_prime:"4":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
1542 mpi_is_prime:"1b":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
1550 …e:"b91ba63180c726fbd57786f27f1ede97a3b40c59a7fcfb5898f076e9af57028d":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
1554 …e:"b3a119602ee213cde28581ecd892e0f592a338655dce4ca88054b3d124d0e561":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
1562 …3c9c6f0ead752500a32c56c62082912b66132b2a6aa42ada923e1ad22ceb7ba00c1":MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
Dtest_suite_rsa.data450 mbedtls_rsa_deduce_private_exponent:"3":"5":"3":"3":1:MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
456 …62D77743F89EACF3B1723BDB25CE2F333FA63CACF0E67DF1A431893BB9B352FCB":1:MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
Dtest_suite_bignum.function1151 TEST_ASSERT(res == MBEDTLS_ERR_MPI_NOT_ACCEPTABLE);
/mbedtls-3.7.0/library/
Dbignum.c1897 ret = MBEDTLS_ERR_MPI_NOT_ACCEPTABLE; in mbedtls_mpi_inv_mod()
2011 return MBEDTLS_ERR_MPI_NOT_ACCEPTABLE; in mpi_check_small_factors()
2020 return MBEDTLS_ERR_MPI_NOT_ACCEPTABLE; in mpi_check_small_factors()
2068 ret = MBEDTLS_ERR_MPI_NOT_ACCEPTABLE; in mpi_miller_rabin()
2105 ret = MBEDTLS_ERR_MPI_NOT_ACCEPTABLE; in mpi_miller_rabin()
2134 return MBEDTLS_ERR_MPI_NOT_ACCEPTABLE; in mbedtls_mpi_is_prime_ext()
2170 int ret = MBEDTLS_ERR_MPI_NOT_ACCEPTABLE; in mbedtls_mpi_gen_prime()
2218 if (ret != MBEDTLS_ERR_MPI_NOT_ACCEPTABLE) { in mbedtls_mpi_gen_prime()
2255 if (ret != MBEDTLS_ERR_MPI_NOT_ACCEPTABLE) { in mbedtls_mpi_gen_prime()
Derror.c601 case -(MBEDTLS_ERR_MPI_NOT_ACCEPTABLE): in mbedtls_low_level_strerr()
Ddhm.c198 if (ret == MBEDTLS_ERR_MPI_NOT_ACCEPTABLE) { in dhm_make_common()
Decp.c1717 if (ret == MBEDTLS_ERR_MPI_NOT_ACCEPTABLE) { in ecp_randomize_jac()
2477 if (ret == MBEDTLS_ERR_MPI_NOT_ACCEPTABLE) { in ecp_randomize_mxz()
3126 case MBEDTLS_ERR_MPI_NOT_ACCEPTABLE: in mbedtls_ecp_gen_privkey_sw()
Dbignum_core.c683 ret = MBEDTLS_ERR_MPI_NOT_ACCEPTABLE; in mbedtls_mpi_core_random()
Drsa.c1324 if (ret != 0 && ret != MBEDTLS_ERR_MPI_NOT_ACCEPTABLE) { in rsa_prepare_blinding()
1328 } while (ret == MBEDTLS_ERR_MPI_NOT_ACCEPTABLE); in rsa_prepare_blinding()
Dpsa_crypto.c483 case MBEDTLS_ERR_MPI_NOT_ACCEPTABLE: in mbedtls_to_psa_error()
/mbedtls-3.7.0/include/mbedtls/
Dbignum.h36 #define MBEDTLS_ERR_MPI_NOT_ACCEPTABLE -0x000E macro