Searched refs:LTC_MP_EQ (Results 1 – 20 of 20) sorted by relevance
/external/dropbear/libtomcrypt/src/pk/dsa/ |
D | dsa_verify_key.c | 53 if (mp_cmp_d(key->g, 0) == LTC_MP_EQ || mp_cmp_d(key->g, 1) == LTC_MP_EQ) { in dsa_verify_key() 58 if (mp_cmp(tmp, key->g) == LTC_MP_EQ || mp_cmp(key->g, key->p) != LTC_MP_LT) { in dsa_verify_key() 77 if (mp_cmp_d(tmp, 1) != LTC_MP_EQ) { in dsa_verify_key() 84 if (mp_cmp_d(tmp, 1) != LTC_MP_EQ) { in dsa_verify_key()
|
D | dsa_verify_hash.c | 74 if (mp_cmp(r, v) == LTC_MP_EQ) { in dsa_verify_hash_raw()
|
D | dsa_sign_hash.c | 81 } while (mp_cmp_d(tmp, 1) != LTC_MP_EQ); in dsa_sign_hash_raw()
|
D | dsa_make_key.c | 99 } while (mp_cmp_d(tmp, 1) == LTC_MP_EQ); in dsa_make_key()
|
/external/dropbear/libtomcrypt/src/pk/ecc/ |
D | ecc_test.c | 77 if (mp_cmp(G->x, GG->x) != LTC_MP_EQ || mp_cmp(G->y, GG->y) != LTC_MP_EQ) { in ecc_test()
|
D | ltc_ecc_projective_add_point.c | 53 if ( (mp_cmp(P->x, Q->x) == LTC_MP_EQ) && in ltc_ecc_projective_add_point() 54 (Q->z != NULL && mp_cmp(P->z, Q->z) == LTC_MP_EQ) && in ltc_ecc_projective_add_point() 55 (mp_cmp(P->y, Q->y) == LTC_MP_EQ || mp_cmp(P->y, t1) == LTC_MP_EQ)) { in ltc_ecc_projective_add_point()
|
D | ecc_verify_hash.c | 145 if (mp_cmp(v, r) == LTC_MP_EQ) { in ecc_verify_hash()
|
D | ecc_import.c | 63 if (mp_cmp(t1, b) != LTC_MP_EQ) { in is_point()
|
D | ltc_ecc_mulmod.c | 84 if (mp_cmp_d(mu, 1) == LTC_MP_EQ) { in ltc_ecc_mulmod()
|
/external/dropbear/libtomcrypt/src/pk/rsa/ |
D | rsa_import.c | 97 if (mp_cmp_d(key->N, 0) == LTC_MP_EQ) { in rsa_import() 118 } else if (mp_cmp_d(key->N, 1) == LTC_MP_EQ) { in rsa_import()
|
/external/dropbear/libtomcrypt/testprof/ |
D | ecc_test.c | 91 …if ((mp_cmp(C1->x, C2->x) != LTC_MP_EQ) || (mp_cmp(C1->y, C2->y) != LTC_MP_EQ) || (mp_cmp(C1->z, C… in ecc_test_shamir()
|
D | der_tests.c | 278 if (mp_cmp_d(l->data, 12345678UL) != LTC_MP_EQ) { in der_flexi_test() 562 if (y != x || mp_cmp(a, b) != LTC_MP_EQ) {
|
/external/dropbear/libtomcrypt/src/pk/katja/ |
D | katja_import.c | 48 if (mp_cmp_d(key->N, 0) == LTC_MP_EQ) { in katja_import()
|
D | katja_make_key.c | 59 } while (mp_cmp_d(tmp2, 1) != LTC_MP_EQ); in katja_make_key()
|
/external/dropbear/libtomcrypt/src/headers/ |
D | tomcrypt_math.h | 4 #define LTC_MP_EQ 0 macro 496 #define mp_iszero(a) (mp_cmp_d(a, 0) == LTC_MP_EQ ? LTC_MP_YES : LTC_MP_NO)
|
/external/dropbear/libtomcrypt/src/math/ |
D | gmp_desc.c | 100 return LTC_MP_EQ; in compare() 114 return LTC_MP_EQ; in compare_d()
|
D | ltm_desc.c | 127 case MP_EQ: return LTC_MP_EQ; in compare() 140 case MP_EQ: return LTC_MP_EQ; in compare_d()
|
D | tfm_desc.c | 126 case FP_EQ: return LTC_MP_EQ; in compare() 139 case FP_EQ: return LTC_MP_EQ; in compare_d()
|
/external/dropbear/libtomcrypt/src/math/fp/ |
D | ltc_ecc_fp_mulmod.c | 617 mp_cmp(fp_cache[x].g->x, g->x) == LTC_MP_EQ && in find_base() 618 mp_cmp(fp_cache[x].g->y, g->y) == LTC_MP_EQ && in find_base() 619 mp_cmp(fp_cache[x].g->z, g->z) == LTC_MP_EQ) { in find_base()
|
/external/dropbear/libtomcrypt/ |
D | crypt.tex | 6041 LTC_MP_EQ otherwise. (signed comparison) 6050 LTC_MP_EQ otherwise. (signed comparison)
|