Searched refs:vli_is_zero (Results 1 – 3 of 3) sorted by relevance
/Linux-v5.4/crypto/ |
D | ecrdsa.c | 114 if (vli_is_zero(r, ndigits) || in ecrdsa_verify() 116 vli_is_zero(s, ndigits) || in ecrdsa_verify() 125 if (vli_is_zero(e, ndigits)) in ecrdsa_verify()
|
D | ecc.h | 156 bool vli_is_zero(const u64 *vli, unsigned int ndigits);
|
D | ecc.c | 118 bool vli_is_zero(const u64 *vli, unsigned int ndigits) in vli_is_zero() function 129 EXPORT_SYMBOL(vli_is_zero); 524 while (!vli_is_zero(r + ndigits, ndigits)) { in vli_mmod_special() 570 for (i = 1; carry || !vli_is_zero(q, ndigits); i++) { in vli_mmod_special2() 661 while (!vli_is_zero(r + ndigits, ndigits) || in vli_mmod_barrett() 866 if (vli_is_zero(input, ndigits)) { in vli_mod_inv() 938 return (vli_is_zero(point->x, point->ndigits) && in ecc_point_is_zero() 939 vli_is_zero(point->y, point->ndigits)); in ecc_point_is_zero() 954 if (vli_is_zero(z1, ndigits)) in ecc_point_double_jacobian()
|