Home
last modified time | relevance | path

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

/external/boringssl/src/crypto/ec/
Dsimple.c579 if (x != NULL && !group->meth->field_mul(group, x, &point->X, Z_2, ctx)) { in ec_GFp_simple_point_get_affine_coordinates()
586 if (!group->meth->field_mul(group, Z_3, Z_2, Z_1, ctx)) { in ec_GFp_simple_point_get_affine_coordinates()
595 if (!group->meth->field_mul(group, y, &point->Y, Z_3, ctx)) { in ec_GFp_simple_point_get_affine_coordinates()
611 int (*field_mul)(const EC_GROUP *, BIGNUM *, const BIGNUM *, const BIGNUM *, in ec_GFp_simple_add() local
629 field_mul = group->meth->field_mul; in ec_GFp_simple_add()
666 !field_mul(group, n1, &a->X, n0, ctx)) { in ec_GFp_simple_add()
671 if (!field_mul(group, n0, n0, &b->Z, ctx) || in ec_GFp_simple_add()
672 !field_mul(group, n2, &a->Y, n0, ctx)) { in ec_GFp_simple_add()
687 !field_mul(group, n3, &b->X, n0, ctx)) { in ec_GFp_simple_add()
692 if (!field_mul(group, n0, n0, &a->Z, ctx) || in ec_GFp_simple_add()
[all …]
Doct.c356 !group->meth->field_mul(group, tmp1, tmp2, x_, ctx)) { in ec_GFp_simple_set_compressed_coordinates()
381 if (!group->meth->field_mul(group, tmp2, &group->a, x, ctx)) { in ec_GFp_simple_set_compressed_coordinates()
Dinternal.h175 int (*field_mul)(const EC_GROUP *, BIGNUM *r, const BIGNUM *a, member