/optee_os/lib/libmbedtls/mbedtls/library/ |
A D | rsa_internal.c | 91 if( mbedtls_mpi_cmp_int( N, 0 ) <= 0 || in mbedtls_rsa_deduce_primes() 92 mbedtls_mpi_cmp_int( D, 1 ) <= 0 || in mbedtls_rsa_deduce_primes() 94 mbedtls_mpi_cmp_int( E, 1 ) <= 0 || in mbedtls_rsa_deduce_primes() 135 if( mbedtls_mpi_cmp_int( P, 1 ) != 0 ) in mbedtls_rsa_deduce_primes() 178 if( mbedtls_mpi_cmp_int( &K, 1 ) != 0 ) in mbedtls_rsa_deduce_primes() 208 if( mbedtls_mpi_cmp_int( P, 1 ) <= 0 || in mbedtls_rsa_deduce_private_exponent() 209 mbedtls_mpi_cmp_int( Q, 1 ) <= 0 || in mbedtls_rsa_deduce_private_exponent() 210 mbedtls_mpi_cmp_int( E, 0 ) == 0 ) in mbedtls_rsa_deduce_private_exponent() 266 if( mbedtls_mpi_cmp_int( &L, 0 ) != 0 ) in mbedtls_rsa_validate_crt() 286 if( mbedtls_mpi_cmp_int( &L, 0 ) != 0 ) in mbedtls_rsa_validate_crt() [all …]
|
A D | rsa.c | 176 if( mbedtls_mpi_cmp_int( &ctx->N, 0 ) <= 0 || in rsa_check_context() 201 if( mbedtls_mpi_cmp_int( &ctx->E, 0 ) <= 0 ) in rsa_check_context() 234 mbedtls_mpi_cmp_int( &ctx->QP, 0 ) <= 0 ) in rsa_check_context() 360 mbedtls_mpi_cmp_int( &ctx->N, 0 ) != 0 && in mbedtls_rsa_export_raw() 361 mbedtls_mpi_cmp_int( &ctx->P, 0 ) != 0 && in mbedtls_rsa_export_raw() 362 mbedtls_mpi_cmp_int( &ctx->Q, 0 ) != 0 && in mbedtls_rsa_export_raw() 363 mbedtls_mpi_cmp_int( &ctx->D, 0 ) != 0 && in mbedtls_rsa_export_raw() 364 mbedtls_mpi_cmp_int( &ctx->E, 0 ) != 0; in mbedtls_rsa_export_raw() 409 mbedtls_mpi_cmp_int( &ctx->E, 0 ) != 0; in mbedtls_rsa_export() 453 mbedtls_mpi_cmp_int( &ctx->E, 0 ) != 0; in mbedtls_rsa_export_crt() [all …]
|
A D | bignum.c | 1955 if( mbedtls_mpi_cmp_int( B, 0 ) == 0 ) in mbedtls_mpi_div_mpi() 2036 if( mbedtls_mpi_cmp_int( &X, 0 ) < 0 ) in mbedtls_mpi_div_mpi() 2099 if( mbedtls_mpi_cmp_int( B, 0 ) < 0 ) in mbedtls_mpi_mod_mpi() 2104 while( mbedtls_mpi_cmp_int( R, 0 ) < 0 ) in mbedtls_mpi_mod_mpi() 2384 if( mbedtls_mpi_cmp_int( E, 0 ) < 0 ) in mbedtls_mpi_exp_mod() 2793 if( mbedtls_mpi_cmp_int( N, min ) <= 0 ) in mbedtls_mpi_random() 2864 if( mbedtls_mpi_cmp_int( N, 1 ) <= 0 ) in mbedtls_mpi_inv_mod() 2875 if( mbedtls_mpi_cmp_int( &G, 1 ) != 0 ) in mbedtls_mpi_inv_mod() 3122 if( mbedtls_mpi_cmp_int( &XX, 0 ) == 0 || in mbedtls_mpi_is_prime_ext() 3123 mbedtls_mpi_cmp_int( &XX, 1 ) == 0 ) in mbedtls_mpi_is_prime_ext() [all …]
|
A D | ecp.c | 1325 if( mbedtls_mpi_cmp_int( &pt->Z, 0 ) == 0 ) in ecp_normalize_jac() 1625 if( mbedtls_mpi_cmp_int( &P->Z, 0 ) == 0 ) in ecp_add_mixed() 1648 if( mbedtls_mpi_cmp_int( &T1, 0 ) == 0 ) in ecp_add_mixed() 1650 if( mbedtls_mpi_cmp_int( &T2, 0 ) == 0 ) in ecp_add_mixed() 2751 if( mbedtls_mpi_cmp_int( &pt->X, 0 ) < 0 || in ecp_check_pubkey_sw() 2752 mbedtls_mpi_cmp_int( &pt->Y, 0 ) < 0 || in ecp_check_pubkey_sw() 2803 if( mbedtls_mpi_cmp_int( m, 0 ) == 0 ) in mbedtls_ecp_mul_shortcuts() 2807 else if( mbedtls_mpi_cmp_int( m, 1 ) == 0 ) in mbedtls_ecp_mul_shortcuts() 3048 if( mbedtls_mpi_cmp_int( &pt->X, 0 ) < 0 ) in ecp_check_pubkey_mx() 3065 if( mbedtls_mpi_cmp_int( &pt->Z, 1 ) != 0 ) in mbedtls_ecp_check_pubkey() [all …]
|
A D | ecdsa.c | 271 if( mbedtls_mpi_cmp_int( d, 1 ) < 0 || mbedtls_mpi_cmp_mpi( d, &grp->N ) >= 0 ) in ecdsa_sign_restartable() 332 while( mbedtls_mpi_cmp_int( pr, 0 ) == 0 ); in ecdsa_sign_restartable() 370 while( mbedtls_mpi_cmp_int( s, 0 ) == 0 ); in ecdsa_sign_restartable() 635 if( mbedtls_mpi_cmp_int( r, 1 ) < 0 || mbedtls_mpi_cmp_mpi( r, &grp->N ) >= 0 || in ecdsa_verify_restartable() 636 mbedtls_mpi_cmp_int( s, 1 ) < 0 || mbedtls_mpi_cmp_mpi( s, &grp->N ) >= 0 ) in ecdsa_verify_restartable()
|
A D | dhm.c | 110 if( mbedtls_mpi_cmp_int( param, 2 ) < 0 || in dhm_check_range() 173 if( mbedtls_mpi_cmp_int( &ctx->P, 0 ) == 0 ) in dhm_make_common() 361 if( mbedtls_mpi_cmp_int( &ctx->Vi, 1 ) != 0 ) in dhm_update_blinding()
|
A D | pkparse.c | 695 if( mbedtls_mpi_cmp_int( X, 0 ) == 0 ) in asn1_get_nonzero_mpi()
|
/optee_os/lib/libmbedtls/core/ |
A D | sm2-dsa.c | 95 } while (!mbedtls_mpi_cmp_int(&r, 0) || in sm2_mbedtls_dsa_sign() 193 if (mbedtls_mpi_cmp_int(&rprime, 1) < 0 || in sm2_mbedtls_dsa_verify() 201 if (mbedtls_mpi_cmp_int(&sprime, 1) < 0 || in sm2_mbedtls_dsa_verify() 220 if (!mbedtls_mpi_cmp_int(&t, 0)) { in sm2_mbedtls_dsa_verify()
|
/optee_os/lib/libutee/ |
A D | tee_api_arith_mpi.c | 239 rc = mbedtls_mpi_cmp_int(&mpi, shortVal); in TEE_BigIntCmpS32() 580 rc = !mbedtls_mpi_cmp_int(&gcd, 1); in TEE_BigIntRelativePrime() 625 if (!mbedtls_mpi_cmp_int(y_in, 0)) { in mpi_egcd() 649 while (mbedtls_mpi_cmp_int(&u, 0)) { in mpi_egcd()
|
/optee_os/out/arm/export-ta_arm32/host_include/mbedtls/ |
A D | bignum.h | 627 int mbedtls_mpi_cmp_int( const mbedtls_mpi *X, mbedtls_mpi_sint z );
|
A D | compat-1.3.h | 2053 #define mpi_cmp_int mbedtls_mpi_cmp_int
|
/optee_os/out/arm/export-ta_arm32/include/mbedtls/ |
A D | bignum.h | 627 int mbedtls_mpi_cmp_int( const mbedtls_mpi *X, mbedtls_mpi_sint z );
|
A D | compat-1.3.h | 2053 #define mpi_cmp_int mbedtls_mpi_cmp_int
|
/optee_os/lib/libmbedtls/mbedtls/include/mbedtls/ |
A D | bignum.h | 627 int mbedtls_mpi_cmp_int( const mbedtls_mpi *X, mbedtls_mpi_sint z );
|
A D | compat-1.3.h | 2053 #define mpi_cmp_int mbedtls_mpi_cmp_int
|
/optee_os/out/arm/export-ta_arm64/include/mbedtls/ |
A D | bignum.h | 627 int mbedtls_mpi_cmp_int( const mbedtls_mpi *X, mbedtls_mpi_sint z );
|
A D | compat-1.3.h | 2053 #define mpi_cmp_int mbedtls_mpi_cmp_int
|
/optee_os/out/arm/export-ta_arm64/host_include/mbedtls/ |
A D | bignum.h | 627 int mbedtls_mpi_cmp_int( const mbedtls_mpi *X, mbedtls_mpi_sint z );
|
A D | compat-1.3.h | 2053 #define mpi_cmp_int mbedtls_mpi_cmp_int
|
/optee_os/out/arm/ta/trusted_keys/ |
A D | f04a0fe7-1f5d-4b9b-abf7-619b85b4ce8c.dmp | 457 00006d16 g F .text 0000002e mbedtls_mpi_cmp_int 12047 4ca0: f002 f839 bl 6d16 <mbedtls_mpi_cmp_int> 12452 4fae: f001 feb2 bl 6d16 <mbedtls_mpi_cmp_int> 12883 52ce: f001 fd22 bl 6d16 <mbedtls_mpi_cmp_int> 13812 5954: f001 f9df bl 6d16 <mbedtls_mpi_cmp_int> 16705 00006d16 <mbedtls_mpi_cmp_int>: 16706 mbedtls_mpi_cmp_int(): 17468 7232: f7ff fd70 bl 6d16 <mbedtls_mpi_cmp_int> 17717 7412: f7ff fc80 bl 6d16 <mbedtls_mpi_cmp_int> 17865 751e: f7ff fbfa bl 6d16 <mbedtls_mpi_cmp_int> [all …]
|
A D | f04a0fe7-1f5d-4b9b-abf7-619b85b4ce8c.map | 1264 0x0000000000006d16 mbedtls_mpi_cmp_int
|
/optee_os/out/arm/ta/avb/ |
A D | 023f8f1a-292a-432b-8fc4-de8471358067.dmp | 436 0000488e g F .text 0000002e mbedtls_mpi_cmp_int 6610 27e0: f002 f855 bl 488e <mbedtls_mpi_cmp_int> 7015 2aee: f001 fece bl 488e <mbedtls_mpi_cmp_int> 7446 2e0e: f001 fd3e bl 488e <mbedtls_mpi_cmp_int> 8375 3494: f001 f9fb bl 488e <mbedtls_mpi_cmp_int> 11304 0000488e <mbedtls_mpi_cmp_int>: 11305 mbedtls_mpi_cmp_int(): 12067 4daa: f7ff fd70 bl 488e <mbedtls_mpi_cmp_int> 12316 4f8a: f7ff fc80 bl 488e <mbedtls_mpi_cmp_int> 12464 5096: f7ff fbfa bl 488e <mbedtls_mpi_cmp_int> [all …]
|
A D | 023f8f1a-292a-432b-8fc4-de8471358067.map | 1114 0x000000000000488e mbedtls_mpi_cmp_int
|
/optee_os/out/arm/core/ |
A D | tee.symb_sizes | 1218 000000000e148c44 0000000000000040 T mbedtls_mpi_cmp_int
|
/optee_os/out/arm/ta/pkcs11/ |
A D | fd02c9da-306c-48c7-a49c-bbd827ae86ee.dmp | 757 00010162 g F .text 0000002e mbedtls_mpi_cmp_int 33941 e0ec: f002 f839 bl 10162 <mbedtls_mpi_cmp_int> 34346 e3fa: f001 feb2 bl 10162 <mbedtls_mpi_cmp_int> 34777 e71a: f001 fd22 bl 10162 <mbedtls_mpi_cmp_int> 35706 eda0: f001 f9df bl 10162 <mbedtls_mpi_cmp_int> 38599 00010162 <mbedtls_mpi_cmp_int>: 38600 mbedtls_mpi_cmp_int(): 39362 1067e: f7ff fd70 bl 10162 <mbedtls_mpi_cmp_int> 39611 1085e: f7ff fc80 bl 10162 <mbedtls_mpi_cmp_int> 39759 1096a: f7ff fbfa bl 10162 <mbedtls_mpi_cmp_int> [all …]
|