Home
last modified time | relevance | path

Searched refs:field_mul (Results 1 – 3 of 3) sorted by relevance

/external/boringssl/src/crypto/ec/
Dsimple.c531 if (x != NULL && !group->meth->field_mul(group, x, &point->X, Z_2, ctx)) { in ec_GFp_simple_point_get_affine_coordinates()
538 if (!group->meth->field_mul(group, Z_3, Z_2, Z_1, ctx)) { in ec_GFp_simple_point_get_affine_coordinates()
547 if (!group->meth->field_mul(group, y, &point->Y, Z_3, ctx)) { in ec_GFp_simple_point_get_affine_coordinates()
563 int (*field_mul)(const EC_GROUP *, BIGNUM *, const BIGNUM *, const BIGNUM *, in ec_GFp_simple_add() local
581 field_mul = group->meth->field_mul; in ec_GFp_simple_add()
618 !field_mul(group, n1, &a->X, n0, ctx)) { in ec_GFp_simple_add()
623 if (!field_mul(group, n0, n0, &b->Z, ctx) || in ec_GFp_simple_add()
624 !field_mul(group, n2, &a->Y, n0, ctx)) { in ec_GFp_simple_add()
639 !field_mul(group, n3, &b->X, n0, ctx)) { in ec_GFp_simple_add()
644 if (!field_mul(group, n0, n0, &a->Z, ctx) || in ec_GFp_simple_add()
[all …]
Doct.c310 !group->meth->field_mul(group, tmp1, tmp2, x_, ctx)) { in ec_GFp_simple_set_compressed_coordinates()
335 if (!group->meth->field_mul(group, tmp2, &group->a, x, ctx)) { in ec_GFp_simple_set_compressed_coordinates()
Dinternal.h120 int (*field_mul)(const EC_GROUP *, BIGNUM *r, const BIGNUM *a, member