Lines Matching defs:meth
61 ec_GFp_nistp521_mod(const mp_int *a, mp_int *r, const GFMethod *meth)
84 MP_CHECKOK(mp_mod(a, &meth->irr, r));
118 ec_GFp_nistp521_sqr(const mp_int *a, mp_int *r, const GFMethod *meth)
123 MP_CHECKOK(ec_GFp_nistp521_mod(r, r, meth));
133 const GFMethod *meth)
138 MP_CHECKOK(ec_GFp_nistp521_mod(r, r, meth));
147 const GFMethod *meth)
154 return mp_invmod(b, &meth->irr, r);
159 MP_CHECKOK(mp_invmod(b, &meth->irr, &t));
161 MP_CHECKOK(ec_GFp_nistp521_mod(r, r, meth));
174 group->meth->field_mod = &ec_GFp_nistp521_mod;
175 group->meth->field_mul = &ec_GFp_nistp521_mul;
176 group->meth->field_sqr = &ec_GFp_nistp521_sqr;
177 group->meth->field_div = &ec_GFp_nistp521_div;