Home
last modified time | relevance | path

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

/mbedtls-3.4.0/tests/suites/
Dtest_suite_rsa.function899 const int have_D = ( strlen( input_D ) > 0 );
917 if( have_D )
929 have_D ? &D : NULL,
953 have_D ? &D : NULL,
1036 const int have_D = ( strlen( input_D ) > 0 );
1062 if( have_D )
1120 if( have_D )
1156 const int have_D = ( strlen( input_D ) > 0 );
1172 if( have_D )
1183 have_D ? &D : NULL,
/mbedtls-3.4.0/library/
Drsa.c223 int have_N, have_P, have_Q, have_D, have_E; in mbedtls_rsa_complete() local
232 have_D = ( mbedtls_mpi_cmp_int( &ctx->D, 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()