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.function854 const int have_N = ( strlen( input_N ) > 0 );
871 if( have_N )
889 have_N ? &N : NULL,
901 have_N ? &N : NULL,
995 const int have_N = ( strlen( input_N ) > 0 );
1015 if( have_N )
1115 const int have_N = ( strlen( input_N ) > 0 );
1135 if( have_N )
1150 TEST_ASSERT( mbedtls_rsa_validate_params( have_N ? &N : NULL,
/third_party/mbedtls/library/
Drsa.c232 int have_N, have_P, have_Q, have_D, have_E; in mbedtls_rsa_complete() local
240 have_N = ( mbedtls_mpi_cmp_int( &ctx->N, 0 ) != 0 ); in mbedtls_rsa_complete()
263 pq_missing = have_N && !have_P && !have_Q && have_D && have_E; in mbedtls_rsa_complete()
265 is_pub = have_N && !have_P && !have_Q && !have_D && have_E; in mbedtls_rsa_complete()
277 if( !have_N && have_P && have_Q ) in mbedtls_rsa_complete()