Home
last modified time | relevance | path

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

/third_party/mbedtls/tests/suites/
Dtest_suite_rsa.function857 const int have_D = ( strlen( input_D ) > 0 );
880 if( have_D )
892 have_D ? &D : NULL,
916 have_D ? &D : NULL,
998 const int have_D = ( strlen( input_D ) > 0 );
1024 if( have_D )
1082 if( have_D )
1118 const int have_D = ( strlen( input_D ) > 0 );
1144 if( have_D )
1153 have_D ? &D : NULL,
/third_party/mbedtls/library/
Drsa.c232 int have_N, have_P, have_Q, have_D, have_E; in mbedtls_rsa_complete() local
243 have_D = ( mbedtls_mpi_cmp_int( &ctx->D, 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()