Home
last modified time | relevance | path

Searched refs:have_N (Results 1 – 2 of 2) sorted by relevance

/mbedtls-latest/tests/suites/
Dtest_suite_rsa.function877 const int have_N = (strlen(input_N) > 0);
889 if (have_N) {
911 have_N ? &N : NULL,
921 have_N ? &N : NULL,
1020 const int have_N = (strlen(input_N) > 0);
1040 if (have_N) {
1141 const int have_N = (strlen(input_N) > 0);
1151 if (have_N) {
1173 TEST_ASSERT(mbedtls_rsa_validate_params(have_N ? &N : NULL,
/mbedtls-latest/library/
Drsa.c725 int have_N, have_P, have_Q, have_D, have_E; in mbedtls_rsa_complete() local
731 have_N = (mbedtls_mpi_cmp_int(&ctx->N, 0) != 0); in mbedtls_rsa_complete()
754 pq_missing = have_N && !have_P && !have_Q && have_D && have_E; in mbedtls_rsa_complete()
756 is_pub = have_N && !have_P && !have_Q && !have_D && have_E; in mbedtls_rsa_complete()
769 if (!have_N && have_P && have_Q) { in mbedtls_rsa_complete()