Home
last modified time | relevance | path

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

/mbedtls-development/tests/suites/
A 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,
/mbedtls-development/library/
A Drsa.c246 int have_N, have_P, have_Q, have_D, have_E; in mbedtls_rsa_complete() local
257 have_D = ( mbedtls_mpi_cmp_int( &ctx->D, 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()

Completed in 7 milliseconds