Home
last modified time | relevance | path

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

/third_party/mbedtls/tests/suites/
Dtest_suite_rsa.function869 const int have_P = (strlen(input_P) > 0);
884 if (have_P) {
903 have_P ? &P : NULL,
917 have_P ? &P : NULL,
1009 const int have_P = (strlen(input_P) > 0);
1032 if (have_P) {
1087 if (have_P) {
1130 const int have_P = (strlen(input_P) > 0);
1143 if (have_P) {
1162 have_P ? &P : NULL,
/third_party/mbedtls/library/
Drsa.c226 int have_N, have_P, have_Q, have_D, have_E; in mbedtls_rsa_complete() local
233 have_P = (mbedtls_mpi_cmp_int(&ctx->P, 0) != 0); in mbedtls_rsa_complete()
254 n_missing = have_P && have_Q && have_D && have_E; in mbedtls_rsa_complete()
255 pq_missing = have_N && !have_P && !have_Q && have_D && have_E; in mbedtls_rsa_complete()
256 d_missing = have_P && have_Q && !have_D && have_E; in mbedtls_rsa_complete()
257 is_pub = have_N && !have_P && !have_Q && !have_D && have_E; in mbedtls_rsa_complete()
270 if (!have_N && have_P && have_Q) { in mbedtls_rsa_complete()