Home
last modified time | relevance | path

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

/openthread-3.7.0/third_party/mbedtls/repo/tests/suites/
Dtest_suite_rsa.function878 const int have_P = (strlen(input_P) > 0);
893 if (have_P) {
912 have_P ? &P : NULL,
926 have_P ? &P : NULL,
1021 const int have_P = (strlen(input_P) > 0);
1044 if (have_P) {
1099 if (have_P) {
1142 const int have_P = (strlen(input_P) > 0);
1155 if (have_P) {
1174 have_P ? &P : NULL,
/openthread-3.7.0/third_party/mbedtls/repo/library/
Drsa.c724 int have_N, have_P, have_Q, have_D, have_E; in mbedtls_rsa_complete() local
731 have_P = (mbedtls_mpi_cmp_int(&ctx->P, 0) != 0); in mbedtls_rsa_complete()
752 n_missing = have_P && have_Q && have_D && have_E; in mbedtls_rsa_complete()
753 pq_missing = have_N && !have_P && !have_Q && have_D && have_E; in mbedtls_rsa_complete()
754 d_missing = have_P && have_Q && !have_D && have_E; in mbedtls_rsa_complete()
755 is_pub = have_N && !have_P && !have_Q && !have_D && have_E; in mbedtls_rsa_complete()
768 if (!have_N && have_P && have_Q) { in mbedtls_rsa_complete()