Home
last modified time | relevance | path

Searched refs:vli_is_zero (Results 1 – 4 of 4) sorted by relevance

/Linux-v5.15/crypto/
Decrdsa.c115 if (vli_is_zero(r, ndigits) || in ecrdsa_verify()
117 vli_is_zero(s, ndigits) || in ecrdsa_verify()
126 if (vli_is_zero(e, ndigits)) in ecrdsa_verify()
Decc.h156 bool vli_is_zero(const u64 *vli, unsigned int ndigits);
Decc.c129 bool vli_is_zero(const u64 *vli, unsigned int ndigits) in vli_is_zero() function
140 EXPORT_SYMBOL(vli_is_zero);
535 while (!vli_is_zero(r + ndigits, ndigits)) { in vli_mmod_special()
581 for (i = 1; carry || !vli_is_zero(q, ndigits); i++) { in vli_mmod_special2()
672 while (!vli_is_zero(r + ndigits, ndigits) || in vli_mmod_barrett()
995 if (vli_is_zero(input, ndigits)) { in vli_mod_inv()
1067 return (vli_is_zero(point->x, point->ndigits) && in ecc_point_is_zero()
1068 vli_is_zero(point->y, point->ndigits)); in ecc_point_is_zero()
1085 if (vli_is_zero(z1, ndigits)) in ecc_point_double_jacobian()
Decdsa.c106 if (vli_is_zero(r, ndigits) || vli_cmp(r, curve->n, ndigits) >= 0 || in _ecdsa_verify()
107 vli_is_zero(s, ndigits) || vli_cmp(s, curve->n, ndigits) >= 0) in _ecdsa_verify()