Home
last modified time | relevance | path

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

/third_party/mbedtls/tests/suites/
Dtest_suite_rsa.function868 const int have_N = (strlen(input_N) > 0);
880 if (have_N) {
902 have_N ? &N : NULL,
912 have_N ? &N : NULL,
1008 const int have_N = (strlen(input_N) > 0);
1028 if (have_N) {
1129 const int have_N = (strlen(input_N) > 0);
1139 if (have_N) {
1161 TEST_ASSERT(mbedtls_rsa_validate_params(have_N ? &N : NULL,
/third_party/mbedtls/library/
Drsa.c227 int have_N, have_P, have_Q, have_D, have_E; in mbedtls_rsa_complete() local
233 have_N = (mbedtls_mpi_cmp_int(&ctx->N, 0) != 0); in mbedtls_rsa_complete()
256 pq_missing = have_N && !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()
271 if (!have_N && have_P && have_Q) { in mbedtls_rsa_complete()