Lines Matching defs:meth
61 ec_GFp_nistp192_mod(const mp_int *a, mp_int *r, const GFMethod *meth)
88 MP_CHECKOK(mp_mod(a, &meth->irr, r));
301 const GFMethod *meth)
382 const GFMethod *meth)
460 ec_GFp_nistp192_sqr(const mp_int *a, mp_int *r, const GFMethod *meth)
465 MP_CHECKOK(ec_GFp_nistp192_mod(r, r, meth));
475 const GFMethod *meth)
480 MP_CHECKOK(ec_GFp_nistp192_mod(r, r, meth));
489 const GFMethod *meth)
496 return mp_invmod(b, &meth->irr, r);
501 MP_CHECKOK(mp_invmod(b, &meth->irr, &t));
503 MP_CHECKOK(ec_GFp_nistp192_mod(r, r, meth));
516 group->meth->field_mod = &ec_GFp_nistp192_mod;
517 group->meth->field_mul = &ec_GFp_nistp192_mul;
518 group->meth->field_sqr = &ec_GFp_nistp192_sqr;
519 group->meth->field_div = &ec_GFp_nistp192_div;
521 group->meth->field_add = &ec_GFp_nistp192_add;
522 group->meth->field_sub = &ec_GFp_nistp192_sub;