HomeSort by relevance Sort by last modified time
    Searched refs:LTC_MP_NO (Results 1 - 6 of 6) sorted by null

  /external/dropbear/libtomcrypt/src/math/
rand_prime.c 73 } while (res == LTC_MP_NO);
gmp_desc.c 386 *b = mpz_probab_prime_p(a, 8) > 0 ? LTC_MP_YES : LTC_MP_NO;
ltm_desc.c 391 *b = (*b == MP_YES) ? LTC_MP_YES : LTC_MP_NO;
tfm_desc.c 402 *b = (fp_isprime(a) == FP_YES) ? LTC_MP_YES : LTC_MP_NO;
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_math.h 7 #define LTC_MP_NO 0
496 #define mp_iszero(a) (mp_cmp_d(a, 0) == LTC_MP_EQ ? LTC_MP_YES : LTC_MP_NO)
497 #define mp_isodd(a) (mp_get_digit_count(a) > 0 ? (mp_get_digit(a, 0) & 1 ? LTC_MP_YES : LTC_MP_NO) : LTC_MP_NO)
  /external/dropbear/libtomcrypt/src/pk/ecc/
ecc_sign_hash.c 91 if (mp_iszero(s) == LTC_MP_NO) {

Completed in 3671 milliseconds