Home
last modified time | relevance | path

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

/mbedtls-latest/tests/suites/
Dtest_suite_rsa.function880 const int have_D = (strlen(input_D) > 0);
901 if (have_D) {
914 have_D ? &D : NULL,
936 have_D ? &D : NULL,
1023 const int have_D = (strlen(input_D) > 0);
1052 if (have_D) {
1107 if (have_D) {
1144 const int have_D = (strlen(input_D) > 0);
1163 if (have_D) {
1176 have_D ? &D : NULL,
/mbedtls-latest/library/
Drsa.c725 int have_N, have_P, have_Q, have_D, have_E; in mbedtls_rsa_complete() local
734 have_D = (mbedtls_mpi_cmp_int(&ctx->D, 0) != 0); in mbedtls_rsa_complete()
753 n_missing = have_P && have_Q && have_D && have_E; in mbedtls_rsa_complete()
754 pq_missing = have_N && !have_P && !have_Q && have_D && have_E; in mbedtls_rsa_complete()
755 d_missing = have_P && have_Q && !have_D && have_E; in mbedtls_rsa_complete()
756 is_pub = have_N && !have_P && !have_Q && !have_D && have_E; in mbedtls_rsa_complete()