Home
last modified time | relevance | path

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

/mbedtls-development/tests/suites/
A 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,
/mbedtls-development/library/
A Drsa.c246 int have_N, have_P, have_Q, have_D, have_E; in mbedtls_rsa_complete() local
254 have_N = ( mbedtls_mpi_cmp_int( &ctx->N, 0 ) != 0 ); in mbedtls_rsa_complete()
277 pq_missing = have_N && !have_P && !have_Q && have_D && have_E; in mbedtls_rsa_complete()
279 is_pub = have_N && !have_P && !have_Q && !have_D && have_E; in mbedtls_rsa_complete()
291 if( !have_N && have_P && have_Q ) in mbedtls_rsa_complete()

Completed in 9 milliseconds