Home
last modified time | relevance | path

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

/third_party/mbedtls/tests/suites/
Dtest_suite_rsa.function855 const int have_P = ( strlen( input_P ) > 0 );
874 if( have_P )
890 have_P ? &P : NULL,
906 have_P ? &P : NULL,
996 const int have_P = ( strlen( input_P ) > 0 );
1018 if( have_P )
1076 if( have_P )
1116 const int have_P = ( strlen( input_P ) > 0 );
1138 if( have_P )
1151 have_P ? &P : NULL,
/third_party/mbedtls/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()