Searched refs:mp_get_digit_count (Results 1 – 5 of 5) sorted by relevance
70 err = mp_rand(rnd, mp_get_digit_count(key->N)); in rsa_exptmod()94 has_crt_parameters = (key->p != NULL) && (mp_get_digit_count(key->p) != 0) && in rsa_exptmod()95 (key->q != NULL) && (mp_get_digit_count(key->q) != 0) && in rsa_exptmod()96 (key->dP != NULL) && (mp_get_digit_count(key->dP) != 0) && in rsa_exptmod()97 (key->dQ != NULL) && (mp_get_digit_count(key->dQ) != 0) && in rsa_exptmod()98 (key->qP != NULL) && (mp_get_digit_count(key->qP) != 0); in rsa_exptmod()
35 digit_count = mp_get_digit_count(key->y); in dh_check_pubkey()
91 digidx = mp_get_digit_count(k) - 1; in ltc_ecc_mulmod()
100 digidx = mp_get_digit_count(k) - 1; in ltc_ecc_mulmod()
182 #define mp_get_digit_count(a) ltc_mp.get_digit_count(a) macro225 #define mp_isodd(a) (mp_get_digit_count(a) > 0 ? (mp_get_digit(a, 0) & 1 ? LTC_MP_…
Completed in 6 milliseconds