Home
last modified time | relevance | path

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

/openthread-3.7.0/third_party/mbedtls/repo/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,
/openthread-3.7.0/third_party/mbedtls/repo/library/
Drsa.c724 int have_N, have_P, have_Q, have_D, have_E; in mbedtls_rsa_complete() local
730 have_N = (mbedtls_mpi_cmp_int(&ctx->N, 0) != 0); in mbedtls_rsa_complete()
753 pq_missing = have_N && !have_P && !have_Q && have_D && have_E; in mbedtls_rsa_complete()
755 is_pub = have_N && !have_P && !have_Q && !have_D && have_E; in mbedtls_rsa_complete()
768 if (!have_N && have_P && have_Q) { in mbedtls_rsa_complete()