Home
last modified time | relevance | path

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

/third_party/mbedtls/tests/suites/
Dtest_suite_rsa.function872 const int have_E = (strlen(input_E) > 0);
896 if (have_E) {
906 have_E ? &E : NULL) == 0);
932 have_E ? &E : NULL) == 0);
1012 const int have_E = (strlen(input_E) > 0);
1044 if (have_E) {
1133 const int have_E = (strlen(input_E) > 0);
1155 if (have_E) {
1165 have_E ? &E : NULL,
/third_party/mbedtls/library/
Drsa.c227 int have_N, have_P, have_Q, have_D, have_E; in mbedtls_rsa_complete() local
237 have_E = (mbedtls_mpi_cmp_int(&ctx->E, 0) != 0); in mbedtls_rsa_complete()
255 n_missing = have_P && have_Q && have_D && have_E; in mbedtls_rsa_complete()
256 pq_missing = have_N && !have_P && !have_Q && have_D && have_E; in mbedtls_rsa_complete()
257 d_missing = have_P && have_Q && !have_D && have_E; in mbedtls_rsa_complete()
258 is_pub = have_N && !have_P && !have_Q && !have_D && have_E; in mbedtls_rsa_complete()