Home
last modified time | relevance | path

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

/openthread-3.6.0/third_party/mbedtls/repo/tests/suites/
Dtest_suite_rsa.function1333 const int have_P = ( strlen( input_P ) > 0 );
1352 if( have_P )
1368 have_P ? &P : NULL,
1384 have_P ? &P : NULL,
1474 const int have_P = ( strlen( input_P ) > 0 );
1496 if( have_P )
1554 if( have_P )
1594 const int have_P = ( strlen( input_P ) > 0 );
1616 if( have_P )
1629 have_P ? &P : NULL,
/openthread-3.6.0/third_party/mbedtls/repo/library/
Drsa.c232 int have_N, have_P, have_Q, have_D, have_E; in mbedtls_rsa_complete() local
241 have_P = ( mbedtls_mpi_cmp_int( &ctx->P, 0 ) != 0 ); in mbedtls_rsa_complete()
262 n_missing = have_P && have_Q && have_D && have_E; in mbedtls_rsa_complete()
263 pq_missing = have_N && !have_P && !have_Q && have_D && have_E; in mbedtls_rsa_complete()
264 d_missing = have_P && have_Q && !have_D && have_E; in mbedtls_rsa_complete()
265 is_pub = have_N && !have_P && !have_Q && !have_D && have_E; in mbedtls_rsa_complete()
277 if( !have_N && have_P && have_Q ) in mbedtls_rsa_complete()