Home
last modified time | relevance | path

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

/mbedtls-latest/tests/suites/
Dtest_suite_rsa.function881 const int have_E = (strlen(input_E) > 0);
905 if (have_E) {
915 have_E ? &E : NULL) == 0);
941 have_E ? &E : NULL) == 0);
1024 const int have_E = (strlen(input_E) > 0);
1056 if (have_E) {
1145 const int have_E = (strlen(input_E) > 0);
1167 if (have_E) {
1177 have_E ? &E : NULL,
/mbedtls-latest/library/
Drsa.c725 int have_N, have_P, have_Q, have_D, have_E; in mbedtls_rsa_complete() local
735 have_E = (mbedtls_mpi_cmp_int(&ctx->E, 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()