Home
last modified time | relevance | path

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

/mbedtls-development/tests/suites/
A 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,
/mbedtls-development/library/
A Drsa.c246 int have_N, have_P, have_Q, have_D, have_E; in mbedtls_rsa_complete() local
255 have_P = ( mbedtls_mpi_cmp_int( &ctx->P, 0 ) != 0 ); in mbedtls_rsa_complete()
276 n_missing = have_P && have_Q && have_D && have_E; in mbedtls_rsa_complete()
277 pq_missing = have_N && !have_P && !have_Q && have_D && have_E; in mbedtls_rsa_complete()
278 d_missing = have_P && have_Q && !have_D && have_E; in mbedtls_rsa_complete()
279 is_pub = have_N && !have_P && !have_Q && !have_D && have_E; in mbedtls_rsa_complete()
291 if( !have_N && have_P && have_Q ) in mbedtls_rsa_complete()

Completed in 9 milliseconds