Home
last modified time | relevance | path

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

/mbedtls-3.4.0/tests/suites/
Dtest_suite_rsa.function897 const int have_P = ( strlen( input_P ) > 0 );
911 if( have_P )
927 have_P ? &P : NULL,
943 have_P ? &P : NULL,
1034 const int have_P = ( strlen( input_P ) > 0 );
1056 if( have_P )
1114 if( have_P )
1154 const int have_P = ( strlen( input_P ) > 0 );
1166 if( have_P )
1181 have_P ? &P : NULL,
/mbedtls-3.4.0/library/
Drsa.c223 int have_N, have_P, have_Q, have_D, have_E; in mbedtls_rsa_complete() local
230 have_P = ( mbedtls_mpi_cmp_int( &ctx->P, 0 ) != 0 ); in mbedtls_rsa_complete()
251 n_missing = have_P && have_Q && have_D && have_E; in mbedtls_rsa_complete()
252 pq_missing = have_N && !have_P && !have_Q && have_D && have_E; in mbedtls_rsa_complete()
253 d_missing = have_P && have_Q && !have_D && have_E; in mbedtls_rsa_complete()
254 is_pub = have_N && !have_P && !have_Q && !have_D && have_E; in mbedtls_rsa_complete()
266 if( !have_N && have_P && have_Q ) in mbedtls_rsa_complete()