Lines Matching refs:field_sqr
604 if (!group->meth->field_sqr(group, Z_2, Z_1, ctx)) goto err; in ec_GFp_simple_point_get_affine_coordinates()
646 int (*field_sqr)(const EC_GROUP *, BIGNUM *, const BIGNUM *, BN_CTX *); in ec_GFp_simple_add() local
660 field_sqr = group->meth->field_sqr; in ec_GFp_simple_add()
695 if (!field_sqr(group, n0, &b->Z, ctx)) goto end; in ec_GFp_simple_add()
714 if (!field_sqr(group, n0, &a->Z, ctx)) goto end; in ec_GFp_simple_add()
774 if (!field_sqr(group, n0, n6, ctx)) goto end; in ec_GFp_simple_add()
775 if (!field_sqr(group, n4, n5, ctx)) goto end; in ec_GFp_simple_add()
810 int (*field_sqr)(const EC_GROUP *, BIGNUM *, const BIGNUM *, BN_CTX *); in ec_GFp_simple_dbl() local
824 field_sqr = group->meth->field_sqr; in ec_GFp_simple_dbl()
849 if (!field_sqr(group, n0, &a->X, ctx)) goto err; in ec_GFp_simple_dbl()
857 if (!field_sqr(group, n1, &a->Z, ctx)) goto err; in ec_GFp_simple_dbl()
868 if (!field_sqr(group, n0, &a->X, ctx)) goto err; in ec_GFp_simple_dbl()
871 if (!field_sqr(group, n1, &a->Z, ctx)) goto err; in ec_GFp_simple_dbl()
872 if (!field_sqr(group, n1, n1, ctx)) goto err; in ec_GFp_simple_dbl()
892 if (!field_sqr(group, n3, &a->Y, ctx)) goto err; in ec_GFp_simple_dbl()
899 if (!field_sqr(group, &r->X, n1, ctx)) goto err; in ec_GFp_simple_dbl()
904 if (!field_sqr(group, n0, n3, ctx)) goto err; in ec_GFp_simple_dbl()
943 int (*field_sqr)(const EC_GROUP *, BIGNUM *, const BIGNUM *, BN_CTX *); in ec_GFp_simple_is_on_curve() local
953 field_sqr = group->meth->field_sqr; in ec_GFp_simple_is_on_curve()
980 if (!field_sqr(group, rh, &point->X, ctx)) goto err; in ec_GFp_simple_is_on_curve()
984 if (!field_sqr(group, tmp, &point->Z, ctx)) goto err; in ec_GFp_simple_is_on_curve()
985 if (!field_sqr(group, Z4, tmp, ctx)) goto err; in ec_GFp_simple_is_on_curve()
1019 if (!field_sqr(group, tmp, &point->Y, ctx)) goto err; in ec_GFp_simple_is_on_curve()
1040 int (*field_sqr)(const EC_GROUP *, BIGNUM *, const BIGNUM *, BN_CTX *); in ec_GFp_simple_cmp() local
1060 field_sqr = group->meth->field_sqr; in ec_GFp_simple_cmp()
1084 if (!field_sqr(group, Zb23, &b->Z, ctx)) goto end; in ec_GFp_simple_cmp()
1092 if (!field_sqr(group, Za23, &a->Z, ctx)) goto end; in ec_GFp_simple_cmp()
1313 if (!group->meth->field_sqr(group, tmp1, &p->Z, ctx)) goto err; in ec_GFp_simple_points_make_affine()