Lines Matching refs:meth
59 ec_GFp_nistp521_mod(const mp_int *a, mp_int *r, const GFMethod *meth) in ec_GFp_nistp521_mod() argument
82 MP_CHECKOK(mp_mod(a, &meth->irr, r)); in ec_GFp_nistp521_mod()
104 } else if (s_mp_cmp(r, &meth->irr) == 0) { in ec_GFp_nistp521_mod()
118 ec_GFp_nistp521_sqr(const mp_int *a, mp_int *r, const GFMethod *meth) in ec_GFp_nistp521_sqr() argument
123 MP_CHECKOK(ec_GFp_nistp521_mod(r, r, meth)); in ec_GFp_nistp521_sqr()
133 const GFMethod *meth) in ec_GFp_nistp521_mul() argument
138 MP_CHECKOK(ec_GFp_nistp521_mod(r, r, meth)); in ec_GFp_nistp521_mul()
147 const GFMethod *meth) in ec_GFp_nistp521_div() argument
154 return mp_invmod(b, &meth->irr, r); in ec_GFp_nistp521_div()
159 MP_CHECKOK(mp_invmod(b, &meth->irr, &t)); in ec_GFp_nistp521_div()
161 MP_CHECKOK(ec_GFp_nistp521_mod(r, r, meth)); in ec_GFp_nistp521_div()
174 group->meth->field_mod = &ec_GFp_nistp521_mod; in ec_group_set_gfp521()
175 group->meth->field_mul = &ec_GFp_nistp521_mul; in ec_group_set_gfp521()
176 group->meth->field_sqr = &ec_GFp_nistp521_sqr; in ec_group_set_gfp521()
177 group->meth->field_div = &ec_GFp_nistp521_div; in ec_group_set_gfp521()